-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 977 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "battleship-cli",
"version": "1.0.0",
"description": "",
"scripts": {
"format": "prettier --check --ignore-unknown \"**/*\"",
"node:watch": "TSX_TSCONFIG_PATH=./tsconfig.json node --import tsx --watch --watch-preserve-output src/battleship-cli.ts",
"build:dev": "tsc --build ./tsconfig.json",
"build:dev:watch": "npm run build:dev -- --watch --preserveWatchOutput",
"prestart:dev": "npm run build:dev",
"start:dev": "concurrently --passthrough-arguments --raw --kill-others --group \"npm run build:dev:watch\" \"npm run node:watch -- {@}\" --",
"build": "tsc -p ./tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^22.7.1",
"@types/prompts": "^2.4.9",
"concurrently": "^9.0.1",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"commander": "^12.1.0",
"prompts": "^2.4.2"
}
}