-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
{
"name": "dsp-seed-finder",
"private": true,
"version": "1.0.0",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"preview:web": "vite preview --port 5173",
"preview:native": ".\\target\\release\\dsp_seed.exe",
"build:web": "vite build",
"build:browser:dev": "wasm-pack build --target web --dev",
"build:browser": "wasm-pack build --target web",
"build:native": "cargo build --release",
"build": "npm run build:browser && npm run build:native && npm run build:web"
},
"dependencies": {
"@floating-ui/dom": "^1.5.3",
"@solidjs/router": "^0.10.5",
"clsx": "^2.0.0",
"exceljs": "^4.4.0",
"jszip": "^3.10.1",
"nanoid": "^5.0.4",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.7",
"tiny-emitter": "^2.1.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-solid": "^2.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-solid": "^0.13.0",
"prettier": "^3.1.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.1"
}
}