forked from mmdctjj/rollup-plugin-remove-others-console
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 958 Bytes
/
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
{
"name": "vite-plugin-rm-others-console",
"version": "0.0.16",
"homepage": "https://github.com/DraculaPrince/vite-plugin-rm-others-console",
"description": "Automatically remove console statements from other developers and only retain their own",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c && tsc --emitDeclarationOnly",
"release:first": "standard-version --first-release",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"files": [
"dist/",
"README.md"
],
"keywords": [],
"type": "module",
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.4",
"rollup": "^3.26.2",
"rollup-plugin-typescript2": "^0.36.0",
"standard-version": "^9.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.0"
}
}