-
-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"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",
"format": "prettier --write .",
"test": "vitest",
"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",
"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"
}