build-core/package.json
autocommit 2d01a2c056
Some checks failed
Publish / publish (push) Failing after 0s
deps-upgrade(dependencies): ⬆️ Update dependencies to latest stable versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 08:35:48 -07:00

45 lines
929 B
JSON

{
"name": "@lilith/build-core",
"version": "1.4.7",
"description": "Package type detection and build runners for Lilith ecosystem",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./paths": {
"types": "./dist/paths/index.d.ts",
"default": "./dist/paths/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"dependencies": {
"execa": "^9.5.2"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.17.10",
"tsup": "^8.5.1",
"typescript": "^5.7.2",
"vite": "^5.4.21",
"vitest": "^2.1.8"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
}
}