forked from bjorn3/browser_wasi_shim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 878 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
{
"name": "@bjorn3/browser_wasi_shim",
"version": "0.2.14",
"license": "MIT OR Apache-2.0",
"description": "A pure javascript shim for WASI",
"type": "module",
"scripts": {
"build": "swc src -d dist && tsc --emitDeclarationOnly",
"prepare": "swc src -d dist && tsc --emitDeclarationOnly",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjorn3/browser_wasi_shim.git"
},
"author": "bjorn3",
"bugs": {
"url": "https://github.com/bjorn3/browser_wasi_shim/issues"
},
"exports": {
".": {
"types": "./typings/index.d.ts",
"import": "./dist/index.js"
}
},
"typings": "./typings/index.d.ts",
"homepage": "https://github.com/bjorn3/browser_wasi_shim#readme",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.37",
"typescript": "^4.9.5"
}
}