-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "clockwork-monorepo",
"private": true,
"type": "module",
"workspaces": ["packages/*", "demo"],
"engineStrict": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "bun run scripts/run.ts build --exclude demo",
"dev": "bun run --cwd packages/core dev",
"clean": "bun run scripts/run.ts clean --exclude demo",
"coverage": "bun run --cwd packages/core coverage",
"test": "bun run --cwd packages/core test",
"test:watch": "bun run --cwd packages/core test:watch",
"test:server": "bun run --cwd packages/core test:server",
"test:browser": "bun run --cwd packages/core test:browser",
"lint": "bun run scripts/run.ts lint",
"lint:fix": "bun run scripts/run.ts lint:fix",
"format": "biome format --write .",
"demo": "bun run --cwd demo dev",
"demo:build": "bun run --cwd demo build",
"prepare": "bun run husky",
"prepublishOnly": "bun run build",
"release": "bun run scripts/release.ts",
"release:dry-run": "bun run scripts/release.ts --dry-run",
"release:patch": "bun run scripts/release.ts patch",
"release:minor": "bun run scripts/release.ts minor",
"release:major": "bun run scripts/release.ts major"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commit-and-tag-version": "^12.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6"
},
"lint-staged": {
"packages/core/**/*.{ts,tsx}": [
"bun run --cwd packages/core lint"
],
"packages/platform-memory/**/*.{ts,tsx}": [
"bun run --cwd packages/platform-memory lint"
],
"packages/platform-web-pixi/**/*.{ts,tsx}": [
"bun run --cwd packages/platform-web-pixi lint"
],
"demo/**/*.{ts,tsx}": [
"bun run --cwd demo lint"
]
}
}