aiwf
Version:
AI Workflow Framework for Claude Code with multi-language support (Korean/English)
78 lines • 2.01 kB
JSON
{
"name": "{{projectName}}",
"version": "0.0.1",
"description": "{{description}}",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prepare": "husky install",
"release": "np",
"aiwf": "node .aiwf/scripts/cli.js",
"aiwf:status": "npm run aiwf status",
"aiwf:feature": "npm run aiwf feature",
"aiwf:version": "npm run aiwf version"
},
"keywords": [
"typescript",
"library",
"aiwf"
],
"author": "{{author}}",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/{{username}}/{{projectName}}"
},
"bugs": {
"url": "https://github.com/{{username}}/{{projectName}}/issues"
},
"homepage": "https://github.com/{{username}}/{{projectName}}#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"typescript": "^5.1.0",
"rollup": "^3.25.0",
"@rollup/plugin-typescript": "^11.1.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-dts": "^5.3.0",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0",
"np": "^8.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.8.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"np": {
"yarn": false,
"tests": true
},
"engines": {
"node": ">=14.0.0"
}
}