-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "@nexical/agent",
"version": "1.0.0",
"license": "Apache-2.0",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./src/*": "./src/*"
},
"bin": {
"agent": "dist/main.js"
},
"scripts": {
"generate": "bun run scripts/generate.ts",
"dev": "npm run generate && bun run src/main.ts",
"build": "npm run generate && bun build ./src/main.ts --target bun --outfile ./dist/main.js",
"compile": "npm run generate && bun build ./src/main.ts --compile --outfile ./bin/agent",
"compile:all": "npm run generate && bun run scripts/build-binaries.ts",
"start": "npm run generate && bun run dist/main.js",
"test": "npm run generate && npm run test:unit && npm run test:integration",
"test:unit": "vitest run",
"test:integration": "cd ../../apps/backend && vitest run -c ../../packages/agent/vitest.integration.config.ts",
"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/sdk": "*",
"dotenv": "^17.3.1",
"glob": "^13.0.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"globby": "^16.1.1",
"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"
}
}