-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "@astrical/cli",
"version": "0.5.5",
"type": "module",
"bin": {
"astrical": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:unit": "vitest run --config vitest.config.ts --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest"
},
"dependencies": {
"@nexical/cli-core": "^0.1.12",
"yaml": "^2.3.4",
"fast-glob": "^3.3.3"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.15",
"execa": "^9.6.1",
"fs-extra": "^11.3.2",
"tsup": "^8.0.1",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"vitest": "^4.0.15"
}
}