-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.25 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
76
77
78
{
"name": "altiumts",
"version": "0.0.50",
"description": "TypeScript-first parser and serializer for Altium document formats",
"type": "module",
"bin": {
"altiumts": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/altiumts"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"benchmark": "bun run scripts/benchmark-references.ts",
"build": "tsup-node lib/index.ts lib/node.ts lib/cli.ts --format esm --dts --sourcemap --clean",
"check:size": "node scripts/check-package-size.mjs",
"download-references": "bun run scripts/download-references.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"inventory-references": "bun run scripts/inventory-references.ts",
"inventory-schema": "bun run scripts/audit-record-schema.ts",
"lint": "biome check .",
"prepack": "bun run build",
"prepare": "bun run scripts/prepare-git-dependency.ts",
"site:build": "vite build --config site/vite.config.ts",
"site:dev": "vite --config site/vite.config.ts",
"site:preview": "vite preview --config site/vite.config.ts",
"site:typecheck": "bunx tsc -p site/tsconfig.json --noEmit",
"test": "bun test",
"test:update-svg": "BUN_UPDATE_SNAPSHOTS=1 bun test tests/svg",
"typecheck": "bunx tsc --noEmit",
"verify:browser": "bun run scripts/verify-browser-bundle.ts",
"verify:package": "bun run build && node scripts/verify-built-package.mjs && bun run check:size"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/bun": "^1.3.14",
"bun-match-svg": "^0.0.15",
"sharp": "^0.35.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^8.2.0"
},
"overrides": {
"esbuild": "^0.28.1",
"sharp": "^0.35.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"cfb": "^1.2.2",
"fflate": "^0.8.3"
}
}