-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "@tegaki/root",
"version": "0.11.1",
"private": true,
"type": "module",
"workspaces": [
".",
"packages/*",
"examples/*"
],
"scripts": {
"start": "bun --filter tegaki-generator start",
"dev": "bun --filter @tegaki/website dev",
"test": "bun --conditions=tegaki@dev test",
"build:website": "bun --filter @tegaki/website build",
"compile": "bun --filter tegaki-generator compile --external ink",
"typecheck": "tsgo",
"lint": "biome lint",
"format": "biome format",
"check": "biome check",
"fix": "biome check --write --unsafe",
"checks": "bun check && bun typecheck && bun run test",
"prepare": "husky",
"changeset": "changeset",
"changeset:version": "changeset version && bun scripts/sync-versions.ts",
"changeset:status": "changeset status",
"release": "changeset version && bun scripts/sync-versions.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@changesets/cli": "^2.31.0",
"@types/bun": "^1.3.12",
"@typescript/native-preview": "^7.0.0-dev.20260418.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"@remotion/fonts": "^4",
"remotion": "^4",
"solid-js": "^1.9.12",
"svelte": "^5.55.4",
"tegaki": "workspace:*",
"vue": "^3.5.32",
"zod": "^4"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}