-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.38 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.38 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
{
"private": true,
"type": "module",
"packageManager": "bun@1.1.9",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"license-check": "bun scripts/license-check.ts",
"demos:render": "bash demos/vhs/scripts/render-all.sh",
"prepare": "husky",
"changeset": "changeset",
"ci:version": "changeset version && bun install --frozen-lockfile",
"ci:publish": "changeset publish",
"ci:release:normalize": "node scripts/release/normalize-release-notes.mjs",
"docs:dev": "turbo run dev --filter=@tinkerise/docs",
"docs:build": "turbo run build --filter=@tinkerise/docs",
"docs:preview": "turbo run preview --filter=@tinkerise/docs",
"reliability:closure": "node scripts/reliability/build-v31-closure-bundle.mjs",
"reliability:docs-preview-smoke": "node scripts/reliability/run-docs-smoke-preview.mjs"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"license-checker": "^25.0.1",
"turbo": "^2.4",
"typescript": "^5.7",
"vitest": "^4.0.18"
}
}