-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "electronics-workbench-decoder",
"version": "0.2.0",
"description": "Decode (ewd) and encode (ewe) compressed Electronics Workbench / Multisim / Ultiboard files",
"author": "Cameron Tacklind <cameron@tacklind.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cinderblock/electronics-workbench-decoder.git"
},
"homepage": "https://github.com/cinderblock/electronics-workbench-decoder#readme",
"bugs": {
"url": "https://github.com/cinderblock/electronics-workbench-decoder/issues"
},
"keywords": [
"electronics-workbench",
"multisim",
"ultiboard",
"ewprj",
"ms14",
"pkware",
"implode",
"national-instruments",
"decoder",
"cli"
],
"bin": {
"ewd": "dist/ewd.js",
"ewe": "dist/ewe.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"THIRD-PARTY-LICENSES.md"
],
"scripts": {
"start": "bun run src/ewd.ts",
"dev": "bun --watch run src/ewd.ts",
"ewd": "bun run src/ewd.ts",
"ewe": "bun run src/ewe.ts",
"dev:ewd": "bun --watch run src/ewd.ts",
"dev:ewe": "bun --watch run src/ewe.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"check": "biome check",
"check:fix": "biome check --write",
"format": "biome format --write",
"build": "bun run build.ts && tsc -p tsconfig.build.json",
"licenses": "bun run scripts/collect-licenses.ts",
"prepublishOnly": "bun run check && bun run typecheck && bun test && bun run licenses && bun run build"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/bun": "^1.3.14",
"@types/command-line-args": "^5.2.3",
"command-line-args": "^6.0.2",
"mdb-reader": "^3.2.0",
"node-pkware": "cinderblock/node-pkware#v5-fix",
"typescript": "^6.0.3",
"winston": "^3.19.0"
}
}