aiwf
Version:
AI Workflow Framework for Claude Code with multi-language support (Korean/English)
61 lines • 1.65 kB
JSON
{
"name": "npm-library",
"displayName": "NPM 라이브러리",
"description": "TypeScript 기반 NPM 패키지 라이브러리 템플릿",
"type": "npm-library",
"language": "typescript",
"framework": "none",
"features": [
"TypeScript",
"Rollup Build",
"Jest Testing",
"ESM & CommonJS",
"Type Definitions",
"Tree Shaking",
"AIWF Integration",
"Auto Versioning"
],
"structure": {
"src": "소스 코드",
"tests": "테스트 파일",
"dist": "빌드 출력",
".aiwf": "AIWF 설정 및 메타데이터",
"docs": "라이브러리 문서"
},
"dependencies": {},
"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",
"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"
},
"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\"",
"prepublishOnly": "npm run build",
"release": "np",
"aiwf": "node .aiwf/scripts/cli.js"
},
"publishConfig": {
"access": "public"
}
}