-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.98 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.98 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
{
"name": "@nexical/engine",
"version": "0.1.0",
"description": "Extensible AI-driven multi-agent planner and orchestrator for local project development",
"scripts": {
"build": "tsc --build --force && cp -fr src/skills dist/",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' 'tests/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'README.md' 'package.json'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts' 'README.md' 'package.json'",
"test:unit": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest tests/unit",
"test:one": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest",
"test:integration": "NODE_NO_WARNINGS=1 NODE_OPTIONS=--experimental-vm-modules jest tests/integration --collectCoverage=false",
"test": "npm run test:unit && npm run test:integration",
"prepare": "husky"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"keywords": [],
"author": "Adrian Webb <adrian@fractalsynapse.com>",
"license": "Apache-2.0",
"type": "module",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"@types/nunjucks": "^3.2.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"dependencies": {
"chokidar": "^3.6.0",
"fs-extra": "^11.3.2",
"js-yaml": "^4.1.1",
"nunjucks": "^3.2.4",
"uuid": "^13.0.0",
"zod": "^4.1.12"
}
}