-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 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
{
"name": "@developer-plus/mini-unocss-monorepo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "developer-plus",
"scripts": {
"dev": "pnpm run stub",
"build": "rimraf packages/*/dist && pnpm -r -F !playground run build",
"stub": "pnpm -r --parallel run stub",
"lint": "eslint .",
"play": "pnpm -C playground run dev",
"postinstall": "cd ./packages/core && pnpm build && cd ../presets-default && pnpm build",
"publish": "bumpp package.json --commit \"chore: release v%s\" --push --tag && pnpm -r publish --access public"
},
"devDependencies": {
"@developer-plus/eslint-config": "0.1.1",
"bumpp": "^7.1.1",
"eslint": "^8.15.0",
"rimraf": "^3.0.2",
"tsup": "^5.12.7",
"typescript": "^4.5.4",
"unbuild": "^0.7.4",
"vite": "^2.9.9"
}
}