-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 958 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
29
30
{
"name": "kaori-monorepo",
"private": true,
"description": "A fragrant TS framework",
"keywords": [],
"author": "golok",
"scripts": {
"dev": "pnpm --filter playground dev",
"build:compiler": "pnpm --filter kaori-compiler build",
"watch:compiler": "pnpm --filter kaori-compiler build:watch",
"test": "pnpm -r test",
"build:packages": "pnpm -r --filter \"!./packages/playground\" run build",
"format": "prettier --write .",
"ci:publish": "pnpm build:packages && pnpm -r publish --access public --no-git-checks",
"docs:dev": "cd docs && pnpm vitepress dev",
"docs:build": "cd docs && pnpm vitepress build",
"docs:preview": "cd docs && pnpm vitepress preview"
},
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"devDependencies": {
"jsdom": "^27.0.1",
"prettier": "^3.6.2",
"typescript": "~5.9.3",
"vitepress": "^1.6.4"
},
"dependencies": {
"kaori-monorepo": "link:"
}
}