-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "domshell",
"version": "1.1.0",
"description": "A Chrome Extension that turns the DOM into a filesystem — navigate the web with ls, cd, cat, and grep.",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build && cp public/manifest.json dist/manifest.json && cp src/sidepanel/index.html dist/sidepanel.html",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apireno/DOMShell.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apireno/DOMShell/issues"
},
"homepage": "https://github.com/apireno/DOMShell#readme",
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/chrome": "^0.1.36",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}