Files
bergside__typeui/package.json
T

57 lines
1.2 KiB
JSON
Raw Normal View History

2026-03-03 09:56:34 +02:00
{
"name": "typeui.sh",
2026-05-19 14:48:10 +03:00
"version": "0.7.1",
2026-03-05 20:01:08 +02:00
"description": "Generate design system specifications and style guides as skill files for AI coding providers",
2026-03-03 09:56:34 +02:00
"main": "dist/cli.js",
"bin": {
"typeui.sh": "dist/cli.js"
},
2026-03-05 20:01:08 +02:00
"files": [
"dist",
"README.md",
"LICENSE.md"
],
2026-03-03 09:56:34 +02:00
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
2026-03-05 20:01:08 +02:00
"test": "vitest run",
"prepack": "npm run build",
"release:check": "npm run typecheck && npm run test && npm pack --dry-run"
2026-03-03 09:56:34 +02:00
},
2026-03-07 20:35:41 +02:00
"repository": {
"type": "git",
"url": "https://github.com/bergside/typeui"
2026-03-07 20:35:41 +02:00
},
2026-03-05 20:01:08 +02:00
"keywords": [
"cli",
"design system",
2026-03-05 20:01:08 +02:00
"skills",
"ai",
"design md",
"design skills",
"claude skills",
"ai skills",
"ui",
"ux"
2026-03-05 20:01:08 +02:00
],
"author": "https://bergside.com",
2026-03-07 20:35:41 +02:00
"license": "MIT License",
2026-03-03 09:56:34 +02:00
"type": "commonjs",
2026-03-05 20:01:08 +02:00
"engines": {
"node": ">=18"
2026-03-03 09:56:34 +02:00
},
2026-03-06 18:37:36 +02:00
"homepage": "https://www.typeui.sh",
2026-03-03 09:56:34 +02:00
"dependencies": {
"commander": "^14.0.3",
2026-03-05 20:01:08 +02:00
"inquirer": "^12.11.1",
2026-03-03 09:56:34 +02:00
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}