48 lines
1.1 KiB
JSON
Executable file
48 lines
1.1 KiB
JSON
Executable file
{
|
|
"name": "@lilith/config",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Lilith platform runtime configuration (URLs, assets, features)",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"./platform": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "lixb",
|
|
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/lix-configs": "^1.0.1",
|
|
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/service-registry": "^1.3.0"
|
|
}
|
|
}
|