forked from UmamiAppearance/rollup-plugin-import-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "rollup-plugin-import-manager",
"version": "0.5.3",
"description": "A rollup plugin to add, modify, and remove imports (cjs/es6/dynamic)",
"main": "./cjs/rollup-plugin-import-manager.cjs",
"module": "./src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./cjs/rollup-plugin-import-manager.cjs"
},
"type": "module",
"scripts": {
"build:cjs": "rollup ./src/index.js --file ./cjs/rollup-plugin-import-manager.cjs --format cjs -m",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UmamiAppearance/rollup-plugin-import-manager.git"
},
"author": "UmamiAppearance",
"license": "MIT",
"bugs": {
"url": "https://github.com/UmamiAppearance/rollup-plugin-import-manager/issues"
},
"homepage": "https://github.com/UmamiAppearance/rollup-plugin-import-manager#readme",
"keywords": [
"add",
"cjs",
"es6",
"delete",
"dynamic",
"import",
"import-manager",
"modules",
"remove",
"replace",
"rollup",
"rollup-plugin",
"rollup-plugin-import-manager",
"switch"
],
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"colorette": "^2.0.19",
"diff": "^5.1.0",
"import-manager": "^0.3.3"
},
"devDependencies": {
"ava": "^5.2.0",
"eslint": "^8.36.0",
"rollup": "^3.20.0"
}
}