-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) · 4.48 KB
/
package.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "grx",
"version": "3.1.12",
"description": "GPU-Accelerated Web Based EDA Manufacturing Artwork Viewer",
"main": "./out/main/index.js",
"author": "Hunter Creery",
"homepage": "https://grx.creery.org",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"dev:web": "vite",
"build": "npm run typecheck && electron-vite build",
"build:web": "vite build",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config",
"build:all": "npm run build && electron-builder --win --mac --linux --config",
"build:prepare": "electron-builder install-app-deps && husky install",
"create:icons": "electron-icon-builder --input=build/icon.png --output=build --flatten && mv build/icons/* build && rm -rf build/icons",
"build:shaders": "node src/renderer/src/shaders/build.js",
"build:shaders:watch": "node src/renderer/src/shaders/watch.js",
"build:chevrotain:types": "tsx src/renderer/lib/nc/chevrotain-parser/gen_dts_signature.js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@hpcreery/tracespace-parser": "^5.0.4",
"@hpcreery/tracespace-plotter": "^5.0.3",
"@hpcreery/tracespace-renderer": "^5.0.3",
"@mantine/carousel": "^7.13.0",
"@mantine/code-highlight": "^7.13.0",
"@mantine/core": "^7.13.0",
"@mantine/dropzone": "^7.13.0",
"@mantine/form": "^7.13.0",
"@mantine/hooks": "^7.13.0",
"@mantine/modals": "^7.13.0",
"@mantine/notifications": "^7.13.0",
"@mantine/nprogress": "^7.13.0",
"@mantine/spotlight": "^7.13.0",
"mantine-contextmenu": "^7.12.2",
"@react-hook/resize-observer": "^2.0.2",
"@react-spring/web": "^9.7.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@tabler/icons-react": "^3.19.0",
"@tracespace/parser": "^5.0.0-next.0",
"@tracespace/plotter": "^5.0.0-alpha.0",
"@types/nearley": "^2.11.5",
"@use-gesture/react": "^10.3.1",
"chevrotain": "^11.0.3",
"chroma-js": "^3.1.1",
"comlink": "^4.4.1",
"dxf-parser": "^1.1.2",
"earcut": "^3.0.0",
"gl-matrix": "^3.4.3",
"glslify": "^7.1.1",
"moo": "^0.5.2",
"ndarray": "^1.0.19",
"nearley": "^2.20.1",
"on-change": "^5.0.1",
"react-color": "^2.19.3",
"regl": "^2.1.0",
"regl-stats-widget": "^0.0.1",
"web-vitals": "^4.2.3",
"webgl-utils": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@electron/notarize": "^2.5.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@tracespace/fixtures": "5.0.0-alpha.0",
"@types/chroma-js": "^2.4.4",
"@types/earcut": "^2.1.4",
"@types/ndarray": "^1.0.14",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "18.3.0",
"@types/react-color": "^3.0.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"chokidar": "^3.6.0",
"concurrently": "^9.0.1",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"electron-updater": "^6.3.4",
"electron-vite": "^2.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"generate-changelog": "^1.8.0",
"glslify-import": "^3.1.0",
"husky": "^9.0.11",
"npm-check-updates": "^17.1.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-glslify": "^1.3.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-arraybuffer": "^0.0.8",
"vite-plugin-comlink": "^5.0.1",
"vite-plugin-glsl": "^1.3.0",
"vitest": "^2.1.1"
}
}