-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1000 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
38
{
"name": "annotate-snippets",
"author": "Chris Rybicki <[email protected]>",
"version": "0.1.2",
"description": "WebAssembly bindings for the Rust annotate-snippets crate",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"pkg/**/*.js",
"pkg/**/*.d.ts",
"pkg/**/*.wasm",
"pkg/**/*.wasm.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Chriscbr/annotate-snippets-wasm"
},
"keywords": [
"wasm",
"error",
"diagnostic",
"annotate",
"snippets"
],
"license": "MIT",
"scripts": {
"build:wasm-pack": "wasm-pack build --target nodejs --out-name index --out-dir ./pkg && rm ./pkg/.gitignore && rm ./pkg/package.json && rm ./pkg/README.md",
"build:typescript": "tsc -b",
"build": "npm run build:wasm-pack && npm run build:typescript",
"package": "npm pack"
},
"devDependencies": {
"typescript": "5.1.3",
"wasm-pack": "0.12.0"
}
}