-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
56
57
{
"name": "vite-plugin-debug",
"version": "1.0.1",
"description": "A plugin for vite that enable mobile debugging",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "pnpm run build --watch --ignore-watch examples",
"build": "tsup src/index.ts --dts --format cjs,esm",
"lint": "eslint src/**/*.ts",
"example:react": "pnpm build && cd examples/vite-react && pnpm run dev",
"example:vue2": "pnpm build && cd examples/vite-vue2 && pnpm run dev",
"example:vue3": "pnpm build && cd examples/vite-vue3 && pnpm run dev"
},
"keywords": [
"vite",
"plugin",
"debug",
"vconsole",
"eruda"
],
"author": "hu3dao",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"bumpp": "^7.1.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"tsup": "^6.0.1",
"typescript": "^4.7.2",
"vite": "^3.1.8"
},
"files": [
"dist",
"README.zh-CN.md"
],
"repository": {
"type": "git",
"url": "https://github.com/hu3dao/vite-plugin-debug"
},
"bugs": {
"url": "https://github.com/hu3dao/vite-plugin-debug/issues"
},
"homepage": "https://github.com/hu3dao/vite-plugin-debug/blob/master/README.md"
}