-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 798 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 798 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": "kata-framework",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"test": "bun test",
"build": "bun --workspaces run build",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish",
"release:prep": "changeset version && bun test && bun run build && bun run docs",
"docs:api": "typedoc",
"docs:sync": "bun scripts/sync-docs-to-web.ts",
"docs": "bun run docs:api && bun run docs:sync"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@kata-framework/react": "workspace:*",
"happy-dom": "^20.8.9",
"typedoc": "^0.28.5",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.8.1",
"typescript": "^5"
}
}