forked from blitzkit/blitzkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 817 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 817 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
{
"name": "blitzkit",
"version": "2.0.0-beta.3",
"license": "BlitzKit License",
"private": true,
"scripts": {
"setup": "chmod a+x scripts/*.sh && ./scripts/setup.sh",
"dev": "scripts/dev.sh",
"build:api": "cd packages/api && bun run build",
"build:game": "cd packages/game && bun run build",
"build:website": "cd packages/website-ue && bun run build",
"build:proxyclient": "cd packages/scripts && bun run build:proxyclient",
"build:catalogitemaccessor": "cd packages/scripts && bun run build:catalogitemaccessor",
"build:protos": "cd packages/scripts && bun run build:protos",
"lint": "tsc",
"lint:website": "cd packages/website-ue && bun run lint"
},
"type": "module",
"workspaces": [
"packages/*"
],
"dependencies": {
"typescript": "^5.9.3"
}
}