-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 873 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
{
"name": "framebaker",
"version": "0.5.0",
"description": "像素风逐帧动画编辑器(Bun 全栈 monorepo)",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun --watch apps/server/src/index.ts",
"start": "bun apps/server/src/index.ts",
"check:animation": "bun scripts/check_animation.ts && bun scripts/check_animation_package.ts",
"typecheck": "tsc -p apps/server && tsc -p apps/web",
"test": "bun test tests",
"test:coverage": "bun test tests --coverage --coverage-reporter=text",
"version:check": "bun scripts/version.ts check",
"version:plan": "bun scripts/version.ts plan",
"version:bump": "bun scripts/version.ts bump"
},
"devDependencies": {
"ajv": "8.17.1",
"bun-types": "^1.3.0",
"typescript": "^5.9.0"
}
}