-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 893 Bytes
/
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
{
"name": "temple",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"bin": {
"temple": "dist/bin/cli.js"
},
"scripts": {
"start": "tsx index.ts",
"build": "tsc && cp src/filename-grammar.ohm dist/src/filename-grammar.ohm",
"test": "vitest",
"test:ci": "vitest --run"
},
"author": "",
"license": "MIT",
"dependencies": {
"@readme/openapi-parser": "^2.5.0",
"@types/node": "^18.15.11",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-formats-draft2019": "^1.6.1",
"axios": "^1.5.1",
"commander": "^11.1.0",
"eta": "^2.0.1",
"glob": "^10.1.0",
"inquirer": "^8.0.0",
"isolated-vm": "^4.6.0",
"json-schema-migrate": "^2.0.0",
"ohm-js": "^17.1.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"devDependencies": {
"vitest": "^0.34.6"
},
"engines": {
"node": ">=16"
}
}