-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "create-validator-ts",
"version": "6.0.0",
"description": "Create JSON Schema validator from TypeScript.",
"keywords": [
"typescript",
"json-schema",
"validator",
"runtime",
"check"
],
"homepage": "https://github.com/azu/create-validator-ts",
"bugs": {
"url": "https://github.com/azu/create-validator-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/create-validator-ts.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./module/index.d.ts",
"default": "./module/index.js"
},
"default": "./module/index.js"
},
"./package.json": "./package.json"
},
"main": "./module/index.js",
"types": "./module/index.d.ts",
"bin": {
"create-validator-ts": "bin/cmd.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"build": "tsc -p . ",
"clean": "git clean -fx lib/ module/",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks",
"prepublishOnly": "npm run clean && npm run build",
"test": "mocha",
"updateSnapshots": "UPDATE_SNAPSHOT=true npm test",
"watch": "tsc -p . --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@file-cache/core": "^2.0.0",
"@file-cache/npm": "^2.0.0",
"glob-watcher": "^6.0.0",
"globby": "^14.0.2",
"meow": "^13.2.0",
"ts-json-schema-generator": "^2.3.0"
},
"devDependencies": {
"@types/glob-watcher": "^5.0.5",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.11",
"ajv": "^8.17.1",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.10",
"tsimp": "^2.0.11",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}