@cto.af/create
Version:
Scaffold a new project in the `@cto.af` style.
52 lines (51 loc) • 1.21 kB
JSON
{
"name": "{{name}}",
"version": "0.0.0",
"decription": "",
"main": "lib/index.js",
"files": [
"lib/*"
],
"type": "module",
"keywords": [],
"author": "{{author}} <{{email}}>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/{{login}}/{{base}}.git"
},
"homepage": "https://github.com/{{login}}/{{base}}#readme",
"bugs": {
"url": "https://github.com/{{login}}/{{base}}/issues"
},
"scripts": {
"clean": "rm -rf coverage docs lib",
"lint": "eslint .",
"pretest": "tsup --sourcemap inline",
"test": "c8 node --test",
"posttest": "tsup --silent",
"docs": "typedoc",
"ts": "tsup",
"build": "npm run test && npm run lint && npm run docs && npm pack --dry-run"
},
"devDependencies": {
"@cto.af/eslint-config": "6.0.13",
"@eslint/markdown": "7.1.0",
"c8": "10.1.3",
"eslint": "9.32.0",
"eslint-plugin-jsdoc": "52.0.2",
"tsup": "8.5.0",
"typedoc": "0.28.9",
"typescript": "5.9.2",
"typescript-eslint": "8.39.0"
},
"packageManager": "pnpm@10.14.0",
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=20"
}
}