-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.42 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": "vite-plugin-remove-console",
"version": "2.2.0",
"packageManager": "[email protected]",
"description": "A vite plugin that remove the types of console in the production environment",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --check --write .",
"clean": "pnpm store prune && pnpm install",
"vue-ts:dev": "pnpm -F @playgrounds/vue-ts run dev",
"vue-ts:preview": "pnpm -F @playgrounds/vue-ts run preview",
"pub": "pub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoxian521/vite-plugin-remove-console.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"vite",
"console",
"remove-console"
],
"author": "xiaoxian521",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiaoxian521/vite-plugin-remove-console/issues"
},
"homepage": "https://github.com/xiaoxian521/vite-plugin-remove-console#readme",
"devDependencies": {
"@pureadmin/release": "^1.0.0",
"@types/node": "^20.10.3",
"prettier": "^3.1.0",
"tsup": "^6.7.0",
"typescript": "^5.3.2",
"vite": "^5.0.4"
}
}