-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "@nexical/cli",
"version": "0.12.13",
"license": "Apache-2.0",
"type": "module",
"bin": {
"nexical": "./dist/index.js"
},
"scripts": {
"build": "tsup && cp -r src/deploy/templates dist/",
"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",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"**/*.{js,jsx,ts,tsx,astro}": [
"eslint --fix"
]
},
"dependencies": {
"@nexical/ai": "^0.1.7",
"@nexical/cli-core": "^0.1.16",
"dotenv": "^17.3.1",
"fast-glob": "^3.3.3",
"glob": "^13.0.6",
"jiti": "^2.6.1",
"kill-port": "^2.0.1",
"minimist": "^1.2.8",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^25.5.0",
"@types/nunjucks": "^3.2.6",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"execa": "^9.6.1",
"fs-extra": "^11.3.4",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0",
"wrangler": "4.76.0"
}
}