-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 920 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
{
"name": "popperdox",
"version": "0.3.2",
"description": "create an app to consume rust-generated wasm packages",
"main": "index.js",
"engines": {
"node": ">=8.0.0",
"pnpm": "9.12.0"
},
"packageManager": "pnpm@9.9.0",
"author": "Thomas Moore <tcmoore@protonmail.com>",
"bin": {
"popperdox": ".bin/popperdox.js"
},
"scripts": {
"build": "wasm-pack build",
"dev": "pnpm --dir app run dev",
"redev": "wasm-pack build && pnpm --dir app install && pnpm --dir app run dev",
"prepare": "husky",
"pre-commit": "lint-staged && pnpm --dir app install && git add app/pnpm-lock.yaml"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.rs": "cargo fmt --"
},
"devDependencies": {
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "3.3.3"
}
}