forked from Lazyuki/rollup-plugin-rename-node-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "rollup-plugin-rename-node-modules",
"version": "1.3.1",
"description": "A Rollup plugin to rename the `node_modules` created when bundling some external libries while using preserveModules",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Lazyuki/rollup-plugin-rename-node-modules.git"
},
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"node_modules",
"rename"
],
"author": "Lazyuki",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lazyuki/rollup-plugin-rename-node-modules/issues"
},
"homepage": "https://github.com/Lazyuki/rollup-plugin-rename-node-modules#readme",
"dependencies": {
"estree-walker": "^2.0.1",
"magic-string": "^0.25.7"
},
"devDependencies": {
"@types/node": "^16.11.7",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"rollup-plugin-typescript2": "^0.27.3",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"rollup": "^2.28.2"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepack": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}