@mccann-hub/create-typescript-template
Version:
CLI tool to initialize a TypeScript project with dual CommonJS and ESM support, path aliases, unit testing, and linting for NPM publishing.
53 lines (52 loc) • 886 B
JSON
{
"name": "@mccann-hub/create-typescript-template",
"version": "0.3.0",
"exports": "./src/index.ts",
"tasks": {
"dev": "deno test --watch ./src/index.ts"
},
"license": "MIT",
"imports": {
"@/": "./src/",
"@utils/": "./src/utils/",
"@std/assert": "jsr:@std/assert@1"
},
"lint": {
"include": [
"./src/"
],
"exclude": [
"./tests/**/*.spec.ts"
],
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"./src/"
],
"exclude": [
"./tests/**/*.spec.ts"
]
},
"nodeModulesDir": "auto",
"exclude": [
"./dist/"
],
"publish": {
"include": [
"./src/",
"README.md",
"deno.json"
]
}
}