-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 961 Bytes
/
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
{
"name": "sketchzone",
"version": "0.0.10",
"type": "module",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"homepage": "https://github.com/robsimmons/sketchzone",
"repository": {
"type": "git",
"url": "https://git.sr.ht/~robsimmons/sketchzone.git"
},
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"dist": "tsc --project tsconfig.package.json"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"@vitejs/plugin-react-swc": "^3.6.0"
},
"dependencies": {
"@codemirror/commands": "^6.5.0",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-visually-hidden": "^1.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}