-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 942 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
39
40
{
"name": "wazum",
"version": "0.0.13",
"description": "A human-friendly compiler infrastructure library for WebAssembly",
"repository": "https://github.com/judehunter/wazum",
"author": "judehunter <jude@judehunter.dev>",
"license": "Apache 2.0",
"type": "module",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist/**.*"
],
"scripts": {
"test": "jest",
"build": "microbundle"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"jest": "29.3.0",
"microbundle": "^0.15.1",
"ts-jest": "^28.0.8",
"typescript": "^4.9.4",
"wabt": "^1.0.32"
},
"dependencies": {
"ts-pattern": "^4.0.5"
},
"volta": {
"node": "19.4.0"
}
}