-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "vite-plugin-rsw",
"description": "wasm-pack plugin for Vite",
"version": "2.0.11",
"author": "lencx <cxin1314@gmail.com>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --dts --minify --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx bumpp --push --tag --commit && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/lencx/vite-plugin-rsw"
},
"homepage": "https://github.com/lencx/vite-plugin-rsw",
"bugs": "https://github.com/lencx/vite-plugin-rsw/issues",
"license": "MIT",
"keywords": [
"rsw",
"wasm",
"vite",
"plugin",
"wasm-pack",
"vite-plugin",
"webAssembly"
],
"peerDependencies": {
"vite": ">2.8.0-0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.16.1",
"@types/node": "^17.0.21",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"vite": "*"
}
}