-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 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
{
"name": "vite-plugin-deploy-log",
"version": "1.1.1",
"description": "A deploy log plugin for Vite.",
"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/*.ts* --dts --format cjs,esm",
"prepublishOnly": "pnpm run build",
"release": "npx bumpp --push --tag --commit && pnpm publish",
"example:react": "cd examples/vite-react && pnpm run build && pnpm run preview",
"example:vue2": "cd examples/vite-vue2 && pnpm run build && pnpm run preview",
"example:vue3": "cd examples/vite-vue3 && pnpm run build && pnpm run preview",
"sync": "open https://npmmirror.com/sync/vite-plugin-deploy-log"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rakers1024/vite-plugin-deploy-log.git"
},
"keywords": [
"vite",
"plugin"
],
"author": "Rakers1024",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rakers1024/vite-plugin-deploy-log/issues"
},
"homepage": "https://github.com/Rakers1024/vite-plugin-deploy-log#readme",
"peerDependencies": {
"vite": ">2.0.0-0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@types/node": "^18.6.1",
"eslint": "^8.20.0",
"tsup": "^6.2.0",
"typescript": "^4.7.4",
"vite": "*"
}
}