81 lines
1.9 KiB
JSON
81 lines
1.9 KiB
JSON
{
|
|
"name": "@fission-ai/openspec",
|
|
"version": "1.3.1",
|
|
"description": "AI-native system for spec-driven development",
|
|
"keywords": [
|
|
"openspec",
|
|
"specs",
|
|
"cli",
|
|
"ai",
|
|
"development"
|
|
],
|
|
"homepage": "https://github.com/Fission-AI/OpenSpec",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Fission-AI/OpenSpec"
|
|
},
|
|
"license": "MIT",
|
|
"author": "OpenSpec Contributors",
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"bin": {
|
|
"openspec": "./bin/openspec.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"schemas",
|
|
"scripts/postinstall.js",
|
|
"!dist/**/*.test.js",
|
|
"!dist/**/__tests__",
|
|
"!dist/**/*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=20.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.2",
|
|
"@changesets/cli": "^2.27.7",
|
|
"@types/node": "^24.2.0",
|
|
"@vitest/ui": "^3.2.4",
|
|
"eslint": "^9.39.2",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.50.1",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/core": "^10.2.2",
|
|
"@inquirer/prompts": "^7.8.0",
|
|
"chalk": "^5.5.0",
|
|
"commander": "^14.0.0",
|
|
"fast-glob": "^3.3.3",
|
|
"ora": "^8.2.0",
|
|
"posthog-node": "^5.20.0",
|
|
"yaml": "^2.8.2",
|
|
"zod": "^4.0.17"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src/",
|
|
"build": "node build.js",
|
|
"dev": "tsc --watch",
|
|
"dev:cli": "pnpm build && node bin/openspec.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest --coverage",
|
|
"test:postinstall": "node scripts/postinstall.js",
|
|
"postinstall": "node scripts/postinstall.js",
|
|
"check:pack-version": "node scripts/pack-version-check.mjs",
|
|
"release": "pnpm run release:ci",
|
|
"release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
|
|
"changeset": "changeset"
|
|
}
|
|
} |