-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.5 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
{
"name": "mini-vue",
"version": "1.0.0",
"description": "手写 Vue3 源码",
"main": "index.js",
"scripts": {
"dev": "rollup --bundleConfigAsCjs -w --config scripts/rollup/vue.config.js ",
"lint:fix": "eslint ./packages --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "pnpm lint:format && pnpm lint:fix ",
"build": "rimraf dist && rollup --bundleConfigAsCjs --config scripts/rollup/vue.config.js",
"mirror:get": "npm config get registry",
"mirror:set": "npm config set registry https://registry.npmmirror.com",
"mirror:rm": "npm config rm registry",
"backup": "git add . && git commit -m \"chore: backup\" && git branch -d backup",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"commitlint": "^18.4.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.4.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.2.2"
}
}