mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-09-04 16:40:49 +02:00
Mirrors the AppImage versioning form (8.3.637~20260414~d157eea) as closely as semver allows: 8.3.637-20260414.d157eea. - package.json: placeholder 0.0.0-dev; CI always overwrites before pack - npm-publish.yml: version step now runs unconditionally (not just on tags), reading VERSION + git date + git hash — dry-run artifacts are stamped too, making them unambiguously traceable to their source commit
37 lines
787 B
JSON
37 lines
787 B
JSON
{
|
|
"name": "magic-vlsi-wasm",
|
|
"version": "0.0.0-dev",
|
|
"description": "Magic VLSI Layout Tool — headless WebAssembly build",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./index.js",
|
|
"types": "./index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"magic.js",
|
|
"magic.wasm",
|
|
"examples/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"example": "node examples/extract.js",
|
|
"test": "node examples/all.js",
|
|
"test:gds": "node examples/gds.js",
|
|
"test:drc": "node examples/drc.js",
|
|
"test:cif": "node examples/cif.js"
|
|
},
|
|
|
|
"keywords": ["magic", "vlsi", "eda", "wasm", "webassembly", "layout"],
|
|
"license": "HPND",
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|