-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 KB
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
58
59
60
61
62
63
64
{
"version": "0.1.3",
"name": "vite-plugin-watcher",
"description": "vite 文件监听插件 | file watcher plugin for vite",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dishait/vite-plugin-watcher.git"
},
"exports": {
"./*": "./*",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"dev": "pnpm run build -- --watch",
"test:watch": "vitest --watch",
"coverage": "vitest --coverage",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit --push --tag && npm publish",
"play": "pnpm -C examples/vite run dev",
"play:open": "pnpm -C examples/vite run dev:open",
"play:host": "pnpm -C examples/vite run dev:host",
"play:build": "pnpm -C examples/vite run build",
"play:preview": "pnpm -C examples/vite run preview",
"play:preview:open": "pnpm -C examples/vite run preview:open",
"play:preview:host": "pnpm -C examples/vite run preview:host"
},
"keywords": [
"vite",
"plugin",
"template"
],
"author": {
"name": "markthree",
"email": "1801982702@qq.com",
"url": "https://github.com/markthree"
},
"bugs": {
"email": "1801982702@qq.com",
"url": "https://github.com/dishait/vite-plugin-watcher/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.19.19",
"bumpp": "^9.3.0",
"c8": "^9.1.0",
"esno": "^4.0.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}