forked from swiftwasm/uwasi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 938 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
{
"name": "uwasi",
"version": "1.2.0",
"description": "Micro modularized WASI runtime for JavaScript",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"browser": {
"./lib/esm/platforms/crypto.js": "./lib/esm/platforms/crypto.browser.js"
},
"scripts": {
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"test": "jest",
"prepare": "npm run build"
},
"keywords": ["webassembly", "wasm", "wasi"],
"bugs": {
"url": "https://github.com/swiftwasm/uwasi/issues"
},
"homepage": "https://github.com/swiftwasm/uwasi",
"repository": {
"type": "git",
"url": "https://github.com/swiftwasm/uwasi.git"
},
"publishConfig": {
"access": "public"
},
"author": "SwiftWasm Team",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^17.0.31",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.6.4"
}
}