@cto.af/create
Version:
Scaffold a new project in the `@cto.af` style.
46 lines (45 loc) • 1.12 kB
JSON
{
"name": "{{name}}",
"version": "0.0.0",
"decription": "",
"main": "lib/index.mjs",
"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 .",
"test": "vitest --run",
"docs": "typedoc",
"ts": "tsdown",
"build": "npm run ts && npm run test && npm run lint && npm run docs && npm pack --dry-run"
},
"devDependencies": {
"@cto.af/eslint-config": "6.1.0",
"@eslint/markdown": "7.5.1",
"eslint": "9.39.1",
"eslint-plugin-jsdoc": "61.1.12",
"tsdown": "0.16.2",
"typedoc": "0.28.14",
"typescript": "5.9.3",
"typescript-eslint": "8.46.4",
"vitest": "4.0.8",
"@vitest/coverage-v8": "4.0.8"
},
"packageManager": "pnpm@10.21.0",
"engines": {
"node": ">=20"
}
}