-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.74 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
{
"name": "openpcb-core-library",
"version": "0.1.0-beta.1",
"description": "OpenPCB Core Library — readable JSON source for the default component library.",
"license": "SEE LICENSE.md",
"private": true,
"type": "module",
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"validate": "bun tools/validate.ts",
"pack": "bun tools/pack.ts",
"typecheck": "bun --bun tsc --noEmit --project tsconfig.json",
"test": "bun test",
"audit:3d": "bun tools/audit-3d-placement.ts",
"import:kicad": "bun tools/import-kicad.ts",
"import:kicad:batch": "bun tools/import-kicad-batch.ts",
"backfill:step-models": "bun tools/backfill-step-models.ts",
"fetch:kicad-libs": "bun scripts/fetch-kicad-libs.ts",
"check:datasheets": "bun tools/check-datasheet-links.ts",
"shared:link": "bash scripts/shared-link.sh",
"shared:unlink": "bash scripts/shared-unlink.sh",
"shared:status": "bash scripts/shared-status.sh"
},
"dependencies": {
"@openpcb/kicad-import": "github:OpenPCB-app/shared#kicad-import-v0.1.2",
"@openpcb/kicad-parsers": "github:OpenPCB-app/shared#kicad-parsers-v0.1.3",
"@openpcb/opclib-pack": "github:OpenPCB-app/shared#opclib-pack-v0.3.0",
"@openpcb/rendering-core": "github:OpenPCB-app/shared#rendering-core-v0.1.3",
"@openpcb/step-to-glb": "github:OpenPCB-app/shared#step-to-glb-v0.1.4",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"fflate": "^0.8.2",
"occt-import-js": "0.0.23",
"three": "0.183.0"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "~5.8.3"
},
"trustedDependencies": [
"@openpcb/kicad-import",
"@openpcb/kicad-parsers",
"@openpcb/opclib-pack",
"@openpcb/rendering-core"
],
"packageManager": "bun@1.3.0"
}