-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "default",
"version": "0.16.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"init": "scripts/init.sh",
"start:vm": "scripts/start-vm.sh",
"start:dev": "tsc && cirrus run run_dev -o simple",
"test:unit": "vitest src/**/*.test.ts",
"test:integration:dev": "tsx scripts/run-tests.ts",
"test:integration": "vitest test/**/*.test.ts",
"test": "vitest",
"rollup": "rollup -c",
"build": "tsx ./scripts/build.ts",
"deploy": "tsx ./scripts/deploy.ts",
"deploy:beta": "BETA=true tsx ./scripts/deploy.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"chalk": "^5.3.0",
"codify-plugin-lib": "^1.0.180",
"codify-schemas": "1.0.63",
"debug": "^4.3.4",
"lodash.isequal": "^4.5.0",
"nanoid": "^5.0.9",
"plist": "^3.1.0",
"semver": "^7.6.0",
"strip-ansi": "^7.1.0",
"trash": "^10.0.0"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@fastify/merge-json-schemas": "^0.2.0",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/debug": "4.1.12",
"@types/lodash.isequal": "^4.5.8",
"@types/mock-fs": "^4.13.4",
"@types/node": "^18",
"@types/plist": "^3.0.5",
"@types/semver": "^7.5.4",
"codify-plugin-test": "0.0.53",
"commander": "^12.1.0",
"eslint": "^8.51.0",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.0.0",
"glob": "^11.0.0",
"merge-json-schemas": "^1.0.0",
"mock-fs": "^5.2.0",
"rollup": "^4.12.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"tsx": "^4.7.2",
"typescript": "^5",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}