@codemod-utils/ast-template
Version:
Utilities for handling *.hbs files as abstract syntax tree
66 lines • 1.72 kB
JSON
{
"name": "@codemod-utils/ast-template",
"version": "3.0.0",
"description": "Utilities for handling *.hbs files as abstract syntax tree",
"keywords": [
"codemod",
"ember-codemod"
],
"homepage": "https://codemod-utils.netlify.app/",
"repository": {
"type": "git",
"url": "git@github.com:ijlee2/codemod-utils.git",
"directory": "packages/ast/template"
},
"license": "MIT",
"author": "Isaac J. Lee",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"files": [
"dist"
],
"dependencies": {
"ember-template-recast": "^6.1.5"
},
"devDependencies": {
"@sondr3/minitest": "^0.1.2",
"@types/node": "^22.19.11",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"@codemod-utils/tests": "3.0.0",
"@shared-configs/typescript": "0.0.0",
"@shared-configs/prettier": "0.0.0",
"@shared-configs/eslint-config-node": "0.0.0"
},
"engines": {
"node": "22.* || >= 24"
},
"scripts": {
"build": "sh build.sh --production",
"format": "prettier . --cache --write",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" && pnpm format",
"lint:format": "prettier . --cache --check",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"test": "sh build.sh --test && mt dist-for-testing --quiet"
}
}