Files
editor/packages/ifc-converter/package.json
T
3cb318e445 ifc-converter: drop test script until tests exist (#328)
The package has no test files yet. `bun test` exits 1 ("No tests found!")
and fails CI; --pass-with-no-tests isn't honored by the bun 1.3.0 pinned
in CI. Match the convention used by @pascal-app/viewer (no test script):
turbo skips the test task for packages without one. The script comes back
when real tests land.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-21 11:26:14 -04:00

43 lines
1.1 KiB
JSON

{
"name": "@pascal-app/ifc-converter",
"version": "0.1.0",
"description": "IFC → Pascal scene-graph conversion. Pure logic — no DOM, no React.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc --build",
"dev": "tsc --build --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@pascal-app/core": "*",
"nanoid": "^5.1.6",
"web-ifc": "^0.0.77"
},
"devDependencies": {
"@pascal/typescript-config": "*",
"@types/bun": "^1.3.0",
"typescript": "6.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/pascalorg/editor.git",
"directory": "packages/ifc-converter"
},
"license": "MIT",
"homepage": "https://github.com/pascalorg/editor/tree/main/packages/ifc-converter#readme",
"bugs": "https://github.com/pascalorg/editor/issues"
}