-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 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
{
"name": "nexus",
"version": "0.1.0",
"private": true,
"description": "Cross-project Claude Code orchestrator — the missing layer between your projects and your AI",
"license": "MIT",
"author": "Matt Kruczek",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"test:unit": "pnpm -r test:unit",
"test:integration": "pnpm -r test:integration",
"lint": "eslint packages/*/src --ext .ts && prettier --check \"packages/*/src/**/*.ts\"",
"lint:fix": "eslint packages/*/src --ext .ts --fix && prettier --write \"packages/*/src/**/*.ts\"",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean && rimraf node_modules",
"tauri:dev": "pnpm --filter @nexus/dashboard tauri:dev",
"tauri:build": "pnpm --filter @nexus/dashboard tauri:build",
"dev:desktop": "nexus-dev.bat",
"build:desktop": "nexus-build.bat"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}