-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rsbuild-plugin-wasmpack",
"version": "0.0.3",
"description": "A plugin for rsbuild to compile Rust crates to WebAssembly using wasm-pack",
"repository": "https://github.com/im-neiru/rsbuild-plugin-wasmpack",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"test": "playwright test",
"format": "pnpm biome format --write",
"lint": "biome lint --error-on-warnings",
"fix": "biome lint --write",
"fix-unsafe": "biome lint --write --unsafe"
},
"keywords": [
"wasm",
"rsbuild",
"wasm-pack",
"rspack",
"rust"
],
"author": "im-neiru",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.49.0",
"@rsbuild/core": "^1.1.4",
"@rslib/core": "0.1.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.9.1",
"cross-spawn": "^7.0.6",
"playwright": "^1.49.0"
},
"dependencies": {
"js-toml": "^1.0.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@rsbuild/core": "^1.1.4"
},
"peerDependenciesMeta": {
"@rsbuild/core": {
"optional": true
}
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}