koa-program/package.json

48 lines
886 B
JSON
Raw Normal View History

2021-02-10 03:40:48 +08:00
{
"name": "koa-program",
2021-02-17 01:50:42 +08:00
"version": "2.0.0",
2021-02-10 03:40:48 +08:00
"bin": {
"koa": "bin/index.js"
},
"engines": {
"node": ">= 15"
},
"dependencies": {
"chalk": "^4.1.0",
"ejs": "^3.1.6",
"ora": "^5.3.0",
"prompts": "^2.4.0"
2021-02-10 03:40:48 +08:00
},
"prettier": {
"tabWidth": 2,
"printWidth": 80,
"semi": true,
"singleQuote": false,
"arrowParens": "avoid",
"bracketSpacing": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/ejs": "^3.0.5",
"@types/prompts": "^2.0.9",
2021-02-10 03:40:48 +08:00
"prettier": "^2.2.1"
},
"description": "koa web 项目脚手架",
"keywords": [
"koa",
"koa2",
"koa-web",
"koa-app",
"cli"
],
"author": {
"name": "titor",
"email": "foolsecret@163.com"
2021-02-10 03:40:48 +08:00
},
"repository": {
2021-02-10 03:58:16 +08:00
"type": "git",
"directory": "packages/name",
2021-02-10 19:20:10 +08:00
"url": "https://github.com/h2ostudio/koa-generator.git"
2021-02-10 03:40:48 +08:00
}
}