-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 854 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 854 Bytes
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
{
"private": true,
"license": "Apache-2.0 (See ./LICENSE)",
"workspaces": [
"lib"
],
"config": {
"path:generated": "./lib/generated"
},
"scripts": {
"build": "yarn clean && yarn generate && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rm -rf ./lib/generated && rm -rf ./lib/esm && rm -rf ./lib/cjs",
"generate": "node scripts/generate.mjs",
"format": "prettier -c .",
"validate": "node scripts/validate.mjs"
},
"devDependencies": {
"ajv": "^8.18.0",
"json-schema-to-typescript": "bcaudan/json-schema-to-typescript#bcaudan/add-readonly-support",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=12.7.0"
},
"volta": {
"node": "20.10.0",
"yarn": "1.22.19"
}
}