-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 KB
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
{
"name": "@atb-as/config-specs",
"version": "9.5.0",
"description": "Shared types and validation for fare product type configs",
"repository": {
"url": "https://github.com/AtB-AS/config-specs"
},
"main": "./lib/index.js",
"license": "EUPL-1.2",
"bin": "./lib/tools/bin.js",
"types": "./lib/index.d.ts",
"files": [
"schema-definitions",
"lib",
"!lib/tests"
],
"private": false,
"scripts": {
"prepublishOnly": "yarn build",
"cli": "node -r @swc-node/register src/tools/bin.ts",
"gen": "node -r @swc-node/register src/tools/generate-schemas.ts",
"build": "rimraf lib && yarn gen && tsc && yarn lint",
"typecheck": "tsc --noEmit",
"test": "vitest",
"lint": "npx prettier . --write"
},
"devDependencies": {
"@swc-node/register": "^1.6.2",
"@swc/core": "^1.3.44",
"@tsconfig/node22": "^22.0.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.24",
"prettier": "^3.2.5",
"rimraf": "^4.4.1",
"typescript": "^5.9.2",
"vitest": "^0.29.8",
"zod": "^4.1.11"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^9.3.2",
"js-yaml": "^4.1.0",
"yargs": "^17.7.1"
},
"peerDependencies": {
"zod": "^4.1.11"
}
}