-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.44 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
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
{
"name": "io.foxbiz.shellular",
"displayName": "Use your dev machine from your phone.",
"version": "0.0.39",
"versionCode": 39,
"description": "",
"type": "module",
"licenses": [
{
"type": "UNLICENSED"
}
],
"scripts": {
"dev": "node dev/start",
"dev:release": "node dev/start -- --release",
"typecheck": "tsc",
"build": "tsc && node dev/build",
"patch": "node dev/version patch",
"minor": "node dev/version minor",
"major": "node dev/version major",
"lang": "node dev/lang",
"test": "vitest run",
"test:watch": "vitest",
"format": "biome check --write"
},
"author": "Shellular Team <team@shellular.dev> (https://shellular.dev)",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.29.2",
"@biomejs/biome": "2.4.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.17",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/core-js": "^2.5.8",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.0",
"babel-loader": "^10.1.1",
"baseline-browser-mapping": "^2.10.24",
"cli-select": "^1.1.2",
"css-loader": "^7.1.4",
"jsdom": "^29.1.1",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.12",
"postcss-loader": "^8.2.1",
"raw-loader": "^4.0.2",
"react-compiler-webpack": "^1.0.0",
"react-refresh": "^0.14.2",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.5.0",
"ts-loader": "^9.5.7",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"webpack": "^5.106.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"xml2js": "^0.6.2"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.12.3",
"@codemirror/language-data": "^6.5.2",
"@codemirror/merge": "^6.12.1",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@headlessui/react": "^2.2.10",
"@lezer/highlight": "^1.2.3",
"@pierre/diffs": "^1.1.20",
"@shellular/protocol": "^0.0.30",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"autosize": "^6.0.1",
"base64-arraybuffer": "^1.0.2",
"buffer": "^6.0.3",
"chart.js": "^4.5.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"core-js": "^3.49.0",
"dompurify": "^3.4.1",
"eruda": "^3.4.3",
"fflate": "^0.8.3",
"framer-motion": "^12.38.0",
"jsqr": "^1.4.0",
"libsodium-wrappers": "^0.8.4",
"marked": "^18.0.2",
"nanoid": "^5.1.11",
"qrcode-generator": "^2.0.4",
"react": "^19.2.5",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.5",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^4.2.4",
"zod": "^4.3.6"
},
"browserslist": [
"cover 100%,not android < 5"
],
"private": true,
"engines": {
"node": ">=22.13"
}
}