You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
854 B
29 lines
854 B
{
|
|
"name": "jlc",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"author": "Freywar Ulvnaudgari <freywar.ulvnaudgari@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "rm -rf build && tsc",
|
|
"run": "yarn build && node build/index.js",
|
|
"run:debug": "yarn build && node --inspect-brk build/index.js",
|
|
"test": "jest",
|
|
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
|
"lint": "eslint",
|
|
"lint:fix": "eslint --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.8.0",
|
|
"@jest/globals": "^29.7.0",
|
|
"@stylistic/eslint-plugin": "^2.6.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"eslint": "^9.8.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.2.3",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|
|
|