-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
56 lines (56 loc) · 2.18 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
{
"version": "2.0.0-alpha.6",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --filter=\"./packages/**\" -r --workspace-concurrency=1 --stream build",
"clean": "pnpm --parallel --stream clean",
"copy": "pnpm --parallel --stream copy",
"docs:build": "pnpm --filter=docs docs:build",
"docs:dev": "pnpm --filter=docs docs:dev",
"docs:release": "pnpm clean && pnpm build && pnpm style && pnpm copy && pnpm docs:build",
"docs:serve": "pnpm --filter=docs docs:serve",
"lint": "eslint --ext .cjs,.js,.ts,.vue .",
"prepare": "husky install",
"release": "pnpm release:check && pnpm release:version && pnpm release:publish",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:check": "pnpm lint && pnpm clean && pnpm build && pnpm style && pnpm copy",
"release:publish": "pnpm -r publish --tag next",
"release:version": "bumpp package.json packages/*/package.json --execute=\"pnpm release:changelog\" --commit \"build: publish v%s\" --all",
"style": "pnpm --parallel --stream style"
},
"lint-staged": {
"*.{cjs,js,ts,vue}": "eslint --fix",
"*.{json,yml,css}": "prettier --write",
"package.json": "sort-package-json"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"bumpp": "^9.1.1",
"conventional-changelog-cli": "^3.0.0",
"cpx2": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"rimraf": "^5.0.1",
"sort-package-json": "^2.5.0",
"tailwindcss": "^3.3.2",
"tsconfig-vuepress": "^4.2.0",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}