-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.01 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-rust",
"version": "1.0.1",
"description": "A vite plugin that intergrate rust & wasm-pack",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"Rust",
"wasm",
"WebAssembly",
"wasm-pack",
"vite"
],
"engines": {
"node": ">=10.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliheng/vite-plugin-rust.git"
},
"bugs": {
"url": "https://github.com/gliheng/vite-plugin-rust/issues"
},
"homepage": "https://github.com/gliheng/vite-plugin-rust/tree/master/#readme",
"scripts": {
"dev": "tsc -w -p .",
"build": "npx rimraf dist && tsc -p ."
},
"author": "juju",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.3.1",
"debug": "^4.1.1",
"which": "^2.0.2"
},
"peerDependencies": {
"vite": ">=1.0.0-beta.1"
},
"devDependencies": {
"@types/node": "^14.0.3",
"@types/which": "^1.3.2",
"typescript": "^3.9.2",
"vite": "^1.0.0-beta.1"
}
}