mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 20:59:56 +01:00
43 lines
912 B
JSON
43 lines
912 B
JSON
{
|
|
"name": "@effigenix/config",
|
|
"version": "0.1.0",
|
|
"description": "Shared configuration constants for Effigenix ERP",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"tsup": {
|
|
"entry": ["src/index.ts"],
|
|
"format": ["esm"],
|
|
"dts": true,
|
|
"clean": true,
|
|
"sourcemap": true,
|
|
"splitting": false
|
|
}
|
|
}
|