-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.26 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.26 KB
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
31
32
33
{
"name": "@doriongilmore/codingame-ts-engine",
"version": "1.1.0",
"description": "A set of tools to work on codingame projects within any IDE",
"type": "module",
"keywords": ["codingame", "engine", "typescript"],
"scripts": {
"_dev": "CG_PATH=${CG_PATH:-./template/puzzle} && cp ./template.package.json ${CG_PATH}/package.json && npm --prefix ${CG_PATH} install && npm --prefix ${CG_PATH} run dev",
"_build": "CG_PATH=${CG_PATH:-./template/puzzle} && tsx bin/buildForCodingame.ts --script=${CG_PATH}/src/playerScript.ts --out=${CG_PATH}/codingame",
"dev:puzzle": "npm run _dev",
"build:puzzle": "npm run _build",
"dev:puzzle:multi": "CG_PATH=./template/puzzle.multifile npm run _dev",
"build:puzzle:multi": "CG_PATH=./template/puzzle.multifile npm run _build",
"build": "tsc",
"test": "echo \"Error: no test specified\""
},
"bin": {
"buildForCodingame.ts": "bin/buildForCodingame.ts"
},
"exports": {
"./types": "./src/types.ts",
"./puzzle/*": "./src/Puzzle/*.ts",
"./puzzle/*.js": "./src/Puzzle/*.ts"
},
"author": "doriongilmore<doriongilmore@outlook.com>",
"license": "MIT",
"dependencies": {
"@types/node": "^22.12.0",
"process.argv": "^1.0.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}