-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "@armantang/zoom-img",
"private": true,
"scripts": {
"postinstall": "husky install",
"lint": "eslint --ext ts src",
"build": "node scripts/build.mjs",
"release": "node scripts/release.mjs"
},
"lint-staged": {
"*.ts": "eslint"
},
"dependencies": {
"@vue/runtime-core": "^3.2.47"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chalk": "^5.2.0",
"cssnano": "^5.1.15",
"enquirer": "^2.3.6",
"eslint": "^8.36.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^8.0.1",
"rollup": "^3.19.1",
"rollup-plugin-postcss": "^4.0.2",
"semver": "^7.3.8",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
}
}