-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "datum-schema",
"description": "Datum Schema Definitions",
"version": "0.0.0",
"type": "module",
"license": "proprietary",
"private": true,
"scripts": {
"build": "tsc -p .",
"bundle": "tsx ./src/bundle.ts",
"clean": "rm -rf ./node_modules ./yarn.lock && yarn",
"test": "vitest --typecheck --coverage"
},
"dependencies": {
"chalk": "4.1.2",
"clear": "^0.1.0",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"glob": "^10.3.1",
"lodash.isequal": "^4.5.0",
"mustache": "^4.2.0",
"tsx": "^4.9.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@hyperjump/browser": "^1.1",
"@hyperjump/json-schema": "^1.9",
"@types/clear": "^0.1.4",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.8",
"@types/glob": "^8.1.0",
"@types/mustache": "^4.2.5",
"@types/node": "^20.11.24",
"@vitest/coverage-istanbul": "^1.3.1",
"nodemon": "^3.1.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.3.1"
}
}