-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vite-plugin-externals-new",
"version": "1.5.5",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"author": {
"name": "河畔一角",
"email": "[email protected]",
"url": "http://www.imooc.com/t/1343480"
},
"unpkg": "dist/cjs/index.js",
"files": [
"dist",
"package.json"
],
"license": "ISC",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn run build:lib",
"build:lib": "yarn run clean && rollup -c",
"start": "rollup -c --watch",
"watch": "rollup -c --watch",
"test": "jest",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,md,json}'",
"clean": "rm -rf dist",
"commit": "git-cz",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:rc": "standard-version --prerelease rc"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"vite-plugin-externals": "^0.6.2",
"vite-plugin-externals-new": "^1.5.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"git-cz": "^4.7.6",
"jest": "^29.4.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.47.0",
"rollup-plugin-typescript2": "^0.35.0",
"standard-version": "^9.1.1",
"typescript": "^4.6.0",
"vite": "^5.3.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/JackySoft/vite-plugin-externals-new"
},
"bugs": {
"url": "https://github.com/JackySoft/vite-plugin-externals-new/issues"
},
"homepage": "https://github.com/JackySoft/vite-plugin-externals-new",
"publishConfig": {
"JackySoft:registry": "https://npm.pkg.github.com"
}
}