-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.5 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
{
"name": "ibps-ide",
"version": "0.11.1",
"license": "AGPL-3.0-only",
"author": {
"name": "baris-inandi",
"url": "https://inandioglu.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baris-inandi/IBPS"
},
"bugs": {
"url": "https://github.com/baris-inandi/IBPS/issues"
},
"homepage": "https://ibps.inandioglu.com",
"scripts": {
"dev": "rsbuild dev",
"build": "rsbuild build",
"build:analyze": "BUNDLE_ANALYZE=true bun run build",
"build:all": "bun run wasm-prod && bun run build",
"icon": "tauri icon icons/appicon.png",
"preview": "rsbuild preview",
"prettier": "prettier --write .",
"wasm-dev": "cd ibps-comp && wasm-pack build . --target web --dev && cd .. && bun add file:ibps-comp/pkg",
"wasm-prod": "cd ibps-comp && wasm-pack build . --target web --release && cd .. && bun add file:ibps-comp/pkg",
"wasm-hard-reset": "rm -rf ibps-comp/target && rm -rf ibps-comp/pkg && bun remove ibps-comp && bun wasm-prod",
"clean": "rm -rf build node_modules ./**/target/ .vercel",
"cleanrust": "rm -rf ./**/target/",
"lint": "eslint \"ibps-ide/**/*.{js,ts,jsx,tsx}\"",
"fix": "eslint \"ibps-ide/**/*.{js,ts,jsx,tsx}\" && prettier --write ."
},
"dependencies": {
"@preact/signals": "^1.2.2",
"@tauri-apps/api": "^1.5.3",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.1",
"caniuse-lite": "",
"html-webpack-plugin": "^5.6.0",
"ibps-comp": "file:ibps-comp/pkg",
"jotai": "^2.4.3",
"lz-string": "^1.5.0",
"preact": "^10.19.4",
"pretty-bytes": "^6.1.1",
"react-ace": "^10.1.0",
"react-icons": "^4.11.0",
"react-py": "^1.10.6",
"react-resizable-panels": "^0.0.55",
"typescript": "^5.3.3",
"use-prefers-color-scheme": "^1.1.3",
"wouter-preact": "^3.0.0"
},
"devDependencies": {
"@rsbuild/core": "^0.4.1",
"@rsbuild/plugin-preact": "^0.4.2",
"@tauri-apps/cli": "latest",
"@tsconfig/strictest": "^2.0.2",
"autoprefixer": "^10.4.17",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript-eslint": "^7.1.0",
"vercel": "^33.5.2",
"wasm-pack": "^0.12.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}