-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "@elune/y2ts",
"version": "0.0.18",
"description": "gen yApi to typescript",
"type": "module",
"main": "./build/src/index.js",
"module": "./src/next.ts",
"types": "./typings/src/index.d.ts",
"files": [
"build",
"typings"
],
"exports": {
"./build/*": "./build/*.js"
},
"engines": {
"node": ">=18.19.1"
},
"bin": {
"y2ts": "./build/src/cli.js"
},
"maintainers": [
{
"name": "qianyf"
}
],
"publishConfig": {
"bin": {
"y2ts": "./build/src/cli.js"
},
"main": "./build/src/index.js",
"module": "./build/src/index.js",
"types": "./typings/src/index.d.ts",
"files": [
"build",
"typings"
]
},
"scripts": {
"test": "vitest",
"n": "tsc -p node.tsconfig.json",
"declare": "tsc -p declare.tsconfig.json",
"build": "npm run clean && npm run n && npm run declare",
"clean": "rimraf build typings",
"upgrade:major": "pnpm version major",
"upgrade:minor": "pnpm version minor",
"upgrade:patch": "pnpm version patch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/json-schema": "^7.0.15",
"json-schema-to-typescript": "^13.1.2"
},
"devDependencies": {
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-istanbul": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"vite": "^5.2.3",
"vitest": "^1.4.0"
}
}