mirror of
https://github.com/BradGroux/veritas-kanban.git
synced 2026-09-06 16:35:56 +00:00
- Version bumped in all package.json files (root, server, web, shared) - CHANGELOG: v2.1.2 entry documenting WORKDIR fix and root cause - README: version badge updated to 2.1.2 - DEPLOYMENT.md: path resolution note added - TROUBLESHOOTING.md: EACCES fix guide added - docker-compose.yml: WORKDIR comment added Reviewed: 10/10/10/10 Related: #102
28 lines
594 B
JSON
28 lines
594 B
JSON
{
|
|
"name": "@veritas-kanban/shared",
|
|
"version": "2.1.2",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Brad Groux <brad@digitalmeld.io>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/BradGroux/veritas-kanban.git"
|
|
}
|
|
}
|