symbol-processor/package.json
TheBrokenRail 27c4f4115b
All checks were successful
CI / Build (push) Successful in 16s
Add Some Tests
2025-02-22 00:17:09 -05:00

23 lines
619 B
JSON

{
"name": "symbol-processor",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && tsc",
"start": "npm run build && node build/index.js",
"lint": "eslint .",
"test": "npm run build && node --test build/test"
},
"author": "TheBrokenRail",
"license": "MIT",
"devDependencies": {
"@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"
}
}