-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
44 lines (44 loc) · 1.34 KB
/
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
39
40
41
42
43
44
{
"name": "@bjorn3/browser_wasi_shim",
"version": "0.3.0",
"license": "MIT OR Apache-2.0",
"description": "A pure javascript shim for WASI",
"type": "module",
"scripts": {
"build": "swc src -d dist -s true && tsc --emitDeclarationOnly",
"prepare": "swc src -d dist && tsc --emitDeclarationOnly",
"test:node": "./test/run-testsuite.sh node",
"test:browser": "playwright-core install && ./test/run-testsuite.sh browser",
"test": "npm run test:node && npm run test:browser",
"check": "tsc --noEmit && prettier src -c && eslint src/"
},
"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"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./typings/index.d.ts",
"import": "./dist/index.js",
"default": "./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-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"playwright": "^1.40.1",
"prettier": "^3.0.3",
"typescript": "^4.9.5"
}
}