-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.17 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
{
"name": "blank",
"type": "module",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"keywords": [],
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:vue": "npm-run-all --parallel dev:vue:build dev:playground-vue",
"dev:react": "npm-run-all --parallel dev:react:build dev:playground-react",
"dev:styles": "pnpm --filter @blank/styles dev",
"dev:icons": "pnpm --filter icons dev",
"setup": "npm-run-all build:styles build:icons build:types build:vue build:react",
"dev:types": "pnpm --filter types dev",
"dev:vue:build": "pnpm --filter @blank/vue dev",
"dev:react:build": "pnpm --filter @blank/react dev",
"dev:playground-vue": "pnpm --filter playground-vue dev",
"dev:playground-react": "pnpm --filter playground-react dev",
"build": "npm-run-all --parallel build:*",
"build:styles": "pnpm --filter @blank/styles build",
"build:vue": "pnpm --filter @blank/vue build",
"build:react": "pnpm --filter @blank/react build",
"build:icons": "pnpm --filter icons build",
"build:types": "pnpm --filter types build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:styles": "pnpm --filter @blank/styles lint",
"clean": "pnpm store prune && rimraf dist node_modules package-lock.json",
"commitlint": "commitlint --edit",
"version": "auto-changelog -p && git add CHANGELOG.md",
"generate-changelog": "auto-changelog -u",
"prepare": "husky install"
},
"workspaces": [
"packages/*",
"playground/*",
"shared/*"
],
"dependencies": {
"npm-run-all2": "^6.2.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.9.3",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.12",
"auto-changelog": "^2.5.0",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vite": "^5.4.9"
}
}