-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@tybys/wasm-util",
"version": "0.9.0",
"description": "WASI polyfill for browser and some wasm util",
"main": "./lib/cjs/index.js",
"module": "./dist/wasm-util.esm-bundler.js",
"types": "./dist/wasm-util.d.ts",
"exports": {
".": {
"module": "./dist/wasm-util.esm-bundler.js",
"import": "./lib/mjs/index.mjs",
"require": "./lib/cjs/index.js",
"types": "./dist/wasm-util.d.ts"
}
},
"scripts": {
"build": "tsgo build",
"watch": "tsgo watch",
"test": "jest",
"lint": "eslint ./src/**/*.{ts,js} --fix",
"prepare": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"wasm",
"webassembly",
"wasi",
"polyfill"
],
"repository": {
"type": "git",
"url": "https://github.com/toyobayashi/wasm-util.git"
},
"author": "toyobayashi",
"license": "MIT",
"dependencies": {
"tslib": "^2.4.0"
},
"devDependencies": {
"@tybys/ts-transform-module-specifier": "^0.0.2",
"@tybys/ts-transform-pure-class": "^0.1.1",
"@tybys/tsgo": "^1.1.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.0",
"memfs-browser": "^3.4.13000",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "~4.8.3"
}
}