-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "rollup-plugin-remove-others-console",
"version": "0.0.8",
"homepage": "https://github.com/mmdctjj/rollup-plugin-remove-others-console",
"description": "Automatically remove console statements from other developers and only retain their own",
"main": "./dist/index.js",
"exports": {
"require": {
"development": "./dist/index.js",
"production": "./dist/index.min.js"
},
"import": {
"development": "./dist/index.js",
"production": "./dist/index.min.js"
}
},
"scripts": {
"build": "rollup --config",
"build:dev": "cross-env BUILD=dev rollup --config",
"build:prod": "cross-env BUILD=prod rollup --config"
},
"keywords": [],
"module": "src/index.js",
"type": "module",
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"cross-env": "^7.0.3",
"rollup": "^3.26.2",
"rollup-plugin-terser": "^7.0.2"
}
}