-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
{
"name": "debug-shell",
"version": "0.0.0-alpha.3.6",
"type": "module",
"description": "A debugging tool for React applications to track and visualize state and event data",
"author": "Jan Anstipp",
"license": "MIT",
"homepage": "https://github.com/janhendry/DebugShell",
"repository": {
"type": "git",
"url": "https://github.com/janhendry/DebugShell.git"
},
"bugs": {
"url": "https://github.com/janhendry/DebugShell/issues"
},
"keywords": ["react", "debugging", "state", "event tracking", "developer tools", "monaco editor", "nanostores", "dev tool", "debug", "json"],
"scripts": {
"dev": "vite",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check --write",
"preview": "vite preview",
"build": "tsc && vite build",
"build:testapp": "vite build",
"prepublishOnly": "bun run lint && bun run generate-license && bun run build",
"generate-license": "npx generate-license-file --input package.json --output third-party-licenses.txt --overwrite"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": ["dist"],
"dependencies": {
"@nanostores/persistent": "^0.10.2",
"@nanostores/react": "0.8.4",
"allotment": "^1.20.3",
"antd": "^5.24.3",
"classnames": "^2.5.1",
"nanostores": "0.11.4"
},
"peerDependencies": {
"@monaco-editor/react": "^4.7.0",
"monaco-editor": "^0.52.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "4.3.4",
"generate-license-file": "^3.7.0",
"sass": "^1.85.1",
"typescript": "5.8.2",
"vite": "^6.2.1",
"path": "^0.12.7"
},
"sideEffects": ["**/*.css"]
}