-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-in.json
37 lines (37 loc) · 1.1 KB
/
package-in.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
{
"name": "@yowasp/wavedrom",
"version": null,
"description": "WaveDrom generates diagrams for digital waveforms, bit fields, and simple combinational circuits",
"author": "Catherine <[email protected]>",
"license": "MIT",
"homepage": "https://yowasp.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/YoWASP/wavedrom.git"
},
"bugs": {
"url": "https://github.com/YoWASP/wavedrom/issues"
},
"type": "module",
"files": ["out/bundle.js", "bin/yowasp-wavedrom.js"],
"exports": {
"types": "./lib/api.d.ts",
"default": "./out/bundle.js"
},
"bin": {
"yowasp-wavedrom": "./bin/yowasp-wavedrom.js"
},
"dependencies": {
"wavedrom": "3.5.0",
"onml": "2.1.0"
},
"devDependencies": {
"esbuild": "^0.20.2",
"@bytecodealliance/componentize-js": "^0.8.3",
"@bytecodealliance/jco": "^1.1.1"
},
"scripts": {
"build": "node build.mjs",
"test": "cd test && jco transpile ../out/wavedrom.component.wasm -o out/ && node test.mjs"
}
}