-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "vite-plugin-wasm-pack-watcher",
"version": "1.0.1",
"author": "Mark Tolmacs <mark@lazycat.hu> (https://marktolmacs.com)",
"homepage": "https://github.com/mtolmacs/vite-plugin-wasm-pack-watcher",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mtolmacs/vite-plugin-wasm-pack-watcher.git"
},
"bugs": {
"url": "https://github.com/mtolmacs/vite-plugin-wasm-pack-watcher/issues"
},
"description": "Watch for Rust file changes and rebuild the project with wasm-pack on changes.",
"types": "./exports/require.d.cts",
"main": "./exports/require.cjs",
"module": "./exports/import.mjs",
"scripts": {
"build": "tsc && esbuild dist/index.js --minify --allow-overwrite --outfile=dist/index.js"
},
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./exports/import.mjs"
},
"require": {
"types": "./exports/require.d.cts",
"default": "./exports/require.cjs"
}
},
"packageManager": "yarn@4.6.0",
"peerDependencies": {
"vite": "^2 || ^3 || ^4 || ^5 || ^6"
},
"devDependencies": {
"@types/node": "^22.10.3",
"esbuild": "^0.24.2",
"typescript": "^4 || ^5",
"vite": "^2 || ^3 || ^4 || ^5 || ^6"
},
"keywords": [
"vite",
"plugin",
"wasm",
"webassembly",
"wasm-pack",
"es-modules",
"modules"
],
"files": [
"/dist",
"/exports",
"LICENSE",
"README.md"
]
}