-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@codeperate/json-schema-builder",
"version": "1.0.10",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "tsc -p tsconfig.test.json && node --test dist/test",
"develop:test": "jest --watchAll",
"release": "npm run test && del-cli dist && npm run build && npx np --yolo --no-release-draft"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeperate/json-schema-builder.git"
},
"author": "Codeperate Limited",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeperate/json-schema-builder/issues"
},
"homepage": "https://github.com/codeperate/json-schema-builder#readme",
"peerDependencies": {
"json-schema-to-ts": "^3.1.1"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.13",
"@types/node": "^20.11.5",
"del-cli": "^6.0.0",
"json-schema-to-ts": "^3.1.1",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
}
}