-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "mmcq.js",
"version": "1.4.1",
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/0x-jerry/mmcq.js.git",
"author": "Jerry Wang <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "vite",
"dev:wasm": "npm run wasm:dev && vite",
"wasm": "wasm-pack build ./rust --target web --release",
"wasm:dev": "wasm-pack build ./rust --target web --dev",
"build": "npm run build:lib",
"build:lib": "tsup",
"build:docs": "vite build",
"prepublishOnly": "npm run build",
"release": "x-release"
},
"files": [
"dist"
],
"devDependencies": {
"@0x-jerry/x-release": "^2.2.2",
"@types/node": "^22.10.1",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"esbuild": "^0.24.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"unplugin-import-bin": "^0.1.4",
"vite": "^6.0.2",
"wasm-pack": "^0.13.1"
}
}