mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 16:35:03 +01:00
32 lines
817 B
JSON
32 lines
817 B
JSON
{
|
|
"name": "tscript",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "target/index.js",
|
|
"scripts": {
|
|
"dev": "node-dev --respawn src/index.ts",
|
|
"build": "tsc",
|
|
"fmt": "prettier -w .",
|
|
"ts-test": "jest",
|
|
"ui-test": "npm run build && cargo run --manifest-path ui-harness/Cargo.toml --bin ui-tests",
|
|
"test": "npm run ts-test && npm run ui-test",
|
|
"lint": "eslint ."
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^6.2.0",
|
|
"@typescript-eslint/parser": "^6.2.0",
|
|
"eslint": "^8.46.0",
|
|
"jest": "^29.6.1",
|
|
"node-dev": "^8.0.0",
|
|
"prettier": "^2.0.0",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.0.0"
|
|
}
|
|
}
|