-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "wizerjs",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:wasm && npm run build:ts",
"build:wasm": "npx wasm-pack build --release -d src/pkg",
"build:ts": "npx vite build"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.26.1",
"files": [
"dist"
],
"devDependencies": {
"@bjorn3/browser_wasi_shim": "^0.4.2",
"@types/node": "^25.0.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.16",
"wabt": "^1.0.39",
"wasm-pack": "^0.13.1"
}
}