symbol-processor/package.json

22 lines
544 B
JSON
Raw Normal View History

2024-01-04 15:27:02 -05:00
{
"name": "symbol-processor",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
2025-02-15 15:03:44 -05:00
"build": "tsc",
"start": "npm run build && node build/index.js",
2025-02-21 19:06:09 -05:00
"lint": "eslint ."
2024-01-04 15:27:02 -05:00
},
"author": "TheBrokenRail",
"license": "MIT",
"devDependencies": {
2025-02-21 19:06:09 -05:00
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
2024-01-04 15:27:02 -05:00
}
}