-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 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
59
60
61
62
63
64
65
{
"private": "true",
"name": "root",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"changeset:init": "npx changeset init",
"changeset:add": "changeset add",
"clean-install": "pnpm -r exec rm -rf node_modules && pnpm i",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"-- dev --------------------------------------------------": "",
"pre:dev": "wait-on ./packages/core/dist/index.min.js",
"dev": "concurrently --kill-others-on-fail \"pnpm dev:player\" \"pnpm run pre:dev && pnpm dev:doc\"",
"dev:parallel": "pnpm -r --no-sort dev",
"dev:player": "pnpm -F \"tiny-player\" dev-w",
"dev:doc": "pnpm -F doc dev",
"-- build ------------------------------------------------": "",
"build": "pnpm -r --sort build",
"build:player": "pnpm -F \"tiny-player\" build",
"preview": "pnpm -F doc preview",
"-- publish ----------------------------------------------": "",
"pub": "pnpm -F \"tiny-player\" publish --registry https://registry.npmjs.org",
"pub:dry": "pnpm -F \"tiny-player\" publish --dry-run --no-git-checks",
"format": "prettier --write .",
"commit": "cz"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,css,sass,scss,md}": [
"prettier --write",
"echo '统一格式化完成🌸'"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"engineStrict": true,
"engines": {
"node": ">=16.15.0",
"pnpm": ">=8.2.0"
},
"author": "荣顶",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"concurrently": "^8.0.1",
"cz-customizable": "^7.0.0",
"eslint": "^8.40.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.4.1",
"wait-on": "^7.0.1"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}