|
| 1 | +{ |
| 2 | + "name": "@bertdeblock/generate-template-registry", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Generate a template registry for Glint.", |
| 5 | + "repository": "https://github.com/bertdeblock/generate-template-registry", |
| 6 | + "license": "MIT", |
| 7 | + "author": "Bert De Block", |
| 8 | + "type": "module", |
| 9 | + "bin": { |
| 10 | + "generate-template-registry": "bin/generate-template-registry.js" |
| 11 | + }, |
| 12 | + "files": [ |
| 13 | + "bin/", |
| 14 | + "dist/" |
| 15 | + ], |
| 16 | + "scripts": { |
| 17 | + "build": "tsc --project tsconfig.json", |
| 18 | + "lint": "concurrently --group --prefix-colors auto \"npm:lint:*(!fix)\"", |
| 19 | + "lint:fix": "concurrently --group --prefix-colors auto \"npm:lint:*:fix\"", |
| 20 | + "lint:format": "prettier . --cache --check", |
| 21 | + "lint:format:fix": "prettier . --cache --write", |
| 22 | + "lint:js": "eslint . --cache", |
| 23 | + "lint:js:fix": "eslint . --fix", |
| 24 | + "lint:types": "tsc --noEmit", |
| 25 | + "prepack": "tsc --project tsconfig.json", |
| 26 | + "start": "pnpm build --watch", |
| 27 | + "test": "vitest", |
| 28 | + "test:coverage": "vitest run --coverage" |
| 29 | + }, |
| 30 | + "dependencies": { |
| 31 | + "chalk": "^5.3.0", |
| 32 | + "change-case": "^5.4.3", |
| 33 | + "fs-extra": "^11.2.0", |
| 34 | + "recursive-readdir": "^2.2.3" |
| 35 | + }, |
| 36 | + "devDependencies": { |
| 37 | + "@release-it-plugins/lerna-changelog": "^6.1.0", |
| 38 | + "@types/fs-extra": "^11.0.4", |
| 39 | + "@types/node": "^20.11.20", |
| 40 | + "@types/recursive-readdir": "^2.2.4", |
| 41 | + "@typescript-eslint/parser": "^7.1.0", |
| 42 | + "@vitest/coverage-v8": "^1.2.2", |
| 43 | + "concurrently": "^8.2.2", |
| 44 | + "eslint": "^8.56.0", |
| 45 | + "eslint-plugin-n": "^16.6.2", |
| 46 | + "prettier": "^3.2.5", |
| 47 | + "recursive-copy": "^2.0.14", |
| 48 | + "release-it": "^17.0.3", |
| 49 | + "typescript": "^5.3.3", |
| 50 | + "vitest": "^1.2.2" |
| 51 | + }, |
| 52 | + "packageManager": "pnpm@8.6.12", |
| 53 | + "engines": { |
| 54 | + "node": ">= 18" |
| 55 | + }, |
| 56 | + "volta": { |
| 57 | + "node": "18.19.1" |
| 58 | + }, |
| 59 | + "publishConfig": { |
| 60 | + "access": "public" |
| 61 | + }, |
| 62 | + "release-it": { |
| 63 | + "git": { |
| 64 | + "commitMessage": "Release v${version}", |
| 65 | + "tagName": "v${version}" |
| 66 | + }, |
| 67 | + "github": { |
| 68 | + "release": true, |
| 69 | + "tokenRef": "GITHUB_AUTH" |
| 70 | + }, |
| 71 | + "plugins": { |
| 72 | + "@release-it-plugins/lerna-changelog": { |
| 73 | + "infile": "CHANGELOG.md" |
| 74 | + } |
| 75 | + } |
| 76 | + } |
| 77 | +} |
0 commit comments