-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1014 Bytes
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
{
"name": "ogres-tabletop",
"description": "Free and open source virtual tabletop that runs in the browser.",
"private": true,
"homepage": "https://ogres.app",
"license": "AGPL-3.0-only",
"author": {
"name": "Sam Ferrell",
"email": "mail@samcf.me",
"url": "https://github.com/samcf"
},
"repository": "github:samcf/ogres",
"scripts": {
"build": "npx shadow-cljs release app",
"start": "npx shadow-cljs watch app",
"style": "npx esbuild src/main/ogres/app/resource/root.css --outfile=web/release/ogres.app.css --loader:.svg=dataurl --bundle --minify --watch"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^9.0.0",
"@msgpack/msgpack": "^3.0.0-beta2",
"@rwh/keystrokes": "^1.5.4",
"@rwh/react-keystrokes": "^1.5.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"esbuild": "^0.25.0",
"react-refresh": "^0.14.0",
"shadow-cljs": "^3.1.7"
}
}