Files
dbis_monorepo/packages/shared-utils/package.json
defiQUG f32bcd596f
Some checks failed
DBIS Monorepo CI / Build (push) Has been cancelled
DBIS Monorepo CI / Lint (push) Has been cancelled
DBIS Monorepo CI / Type Check (push) Has been cancelled
DBIS Monorepo CI / Test (push) Has been cancelled
Initial commit: add .gitignore and README
2026-02-09 21:51:45 -08:00

29 lines
562 B
JSON

{
"name": "@dbis/shared-utils",
"version": "1.0.0",
"description": "Shared utility functions for DBIS projects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest",
"lint": "eslint src",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@workspace/shared-utils": "workspace:*"
},
"devDependencies": {
"typescript": "^5.5.4",
"vitest": "^1.2.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "restricted"
}
}