-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "@yzfe/ts-jsonschema-sync",
"version": "0.0.0",
"description": "Monitor the interface definition of ts and generate JSON schema synchronously once there is any modification",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"author": "vfasky@me.com",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup",
"docs": "npm run cpHome && vuepress dev docs",
"docs:build": "npm run cpHome && NODE_ENV=production vuepress build docs",
"test": "ts-node --transpile-only --skip-project test"
},
"dependencies": {
"glob": "^9.3.2",
"typescript-json-schema": "^0.55.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
}
}