dev-console/package.json
2026-01-21 11:37:36 -08:00

63 lines
1.3 KiB
JSON

{
"name": "@lilith/dev-console",
"version": "1.0.0",
"description": "Development console helpers for Lilith Platform frontends - auto-injected Vite plugin",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./global": {
"types": "./dist/global.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && cp src/global.d.ts dist/global.d.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"vite": ">=4.0.0"
},
"devDependencies": {
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vitest": "^2.1.9"
},
"keywords": [
"vite",
"plugin",
"dev-tools",
"console",
"debugging",
"react",
"lilith"
],
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://forge.nasty.sh/lilith/packages"
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}