Deleted v0.1.0, v0.1.1, v0.1.3 tags and Gitea releases — project is alpha and should never have crossed 0.1.0. All package.json files synced to 0.0.20. Added version-bump.sh script that hard-rejects any version >= 0.1.0. Added versioning hard gate to AGENTS.md so agents cannot repeat the mistake. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
967 B
JSON
43 lines
967 B
JSON
{
|
|
"name": "@mosaic/ui",
|
|
"version": "0.0.20",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./components/*": {
|
|
"types": "./dist/components/*.d.ts",
|
|
"import": "./dist/components/*.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@mosaic/config": "workspace:*",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.2.0",
|
|
"@types/react": "^19.0.8",
|
|
"jsdom": "^26.0.0",
|
|
"typescript": "^5.8.2",
|
|
"vitest": "^3.0.8"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0 || ^19.0.0"
|
|
}
|
|
}
|