-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
47 lines (47 loc) · 1023 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
41
42
43
44
45
46
47
{
"name": "vite-plugin-wasm-pack",
"version": "0.1.12",
"description": "Vite plugin for rust using wasm-pack 🦀",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"dev": "tsc -w"
},
"keywords": [
"wasm-pack",
"wasm-bindgen",
"vite-plugin",
"webassembly",
"wasm",
"rust",
"vite",
"cargo"
],
"author": "nshen <nshen121@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nshen/vite-plugin-wasm-pack"
},
"bugs": {
"url": "https://github.com/nshen/vite-plugin-wasm-pack/issues"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/fs-extra": "^9.0.13",
"@types/node": "^12.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4",
"vite": "2.6.14"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"narrowing": "^1.4.0"
}
}