-
-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.76 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
{
"name": "project-graph",
"version": "1.0.0",
"description": "An open-source project that aims to provide a next-generation node diagram tool for visual thinking.",
"type": "module",
"engines": {
"node": ">=26.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "nx run-many -t dev tauri:dev",
"build": "nx run-many -t build tauri:build",
"build:ci": "nx run-many --skipNxCache -t build tauri:build",
"build:no-tauri": "nx run-many -t build",
"prepare": "husky",
"lint": "eslint",
"lint:fix": "eslint --fix",
"benchmark:cli:cold-start": "pnpm --filter @graphif/project-graph exec tsx ./src/cli/ProjectGraphCliBenchmark.ts",
"test:cli:desktop": "pnpm --filter @graphif/project-graph exec tsx ./src/cli/ProjectGraphCliDesktopAcceptance.ts",
"format": "prettier --write .",
"test": "vitest run --exclude app/src/cli/ProjectGraphCliProduction.test.ts && vitest run app/src/cli/ProjectGraphCliProduction.test.ts",
"tauri": "pnpm --filter @graphif/project-graph tauri",
"prepublish": "pnpm run build:no-tauri",
"publish": "nx run-many -t publish"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.2",
"@graphif/project-graph-cli": "workspace:*",
"cross-env": "^10.1.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nx": "22.7.1",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"typescript": "catalog:",
"typescript-eslint": "^8.59.1",
"vitest": "catalog:"
},
"packageManager": "pnpm@11.3.0"
}