32 lines
917 B
JSON
32 lines
917 B
JSON
{
|
|
"name": "@turboshovel/hooks-app",
|
|
"version": "1.0.0",
|
|
"description": "TypeScript hooks dispatcher for Turboshovel",
|
|
"main": "dist/cli.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"test": "jest",
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
"lint:fix": "eslint src/**/*.ts __tests__/**/*.ts --fix",
|
|
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
|
|
"format:check": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\"",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.0",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.0.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"js-yaml": "^4.1.1"
|
|
}
|
|
}
|