-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 883 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
33
34
35
36
37
38
39
40
{
"name": "vite-plugin-peggy",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fusepilot/vite-plugin-peggy.git"
},
"exports": {
"./*": "./*",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"release": "npm run build && bumpp --commit --push --tag && npm publish",
"prepare": "tsup"
},
"devDependencies": {
"@types/node": "^17.0.40",
"bumpp": "^7.1.1",
"esno": "^0.16.3",
"tsup": "^6.1.0",
"typescript": "^4.7.3",
"vite": "^2.9.9"
},
"dependencies": {
"peggy": "^2.0.1"
},
"peerDependencies": {
"peggy": "^2.0.1"
}
}