-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.38 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@zweer/codingame",
"version": "0.0.1",
"description": "Solutions to a bunch of codingame.com tests",
"author": "Niccolò Olivieri Achille <n.olivieriachille@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Zweer/codingame#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Zweer/codingame.git"
},
"bugs": {
"url": "https://github.com/Zweer/codingame/issues"
},
"keywords": [
"codingame",
"algorithm"
],
"main": "index.js",
"scripts": {
"lint": "biome check --write",
"lint:typecheck": "tsc --noEmit",
"test": "vitest run",
"script:retrieve": "node --import tsx --env-file-if-exists .env scripts/retrieve-puzzles.ts",
"script:achievements": "node --import tsx --env-file-if-exists .env scripts/retrieve-achievements.ts",
"script:plan": "node --import tsx --env-file-if-exists .env scripts/plan-achievements.ts",
"script:batches": "node --import tsx --env-file-if-exists .env scripts/generate-batches.ts",
"script:submit": "node --import tsx --env-file-if-exists .env scripts/list-submissions.ts",
"script:solve": "node --import tsx --env-file-if-exists .env scripts/solve-puzzles.ts",
"script:readme": "node --import tsx --env-file-if-exists .env scripts/update-readme.ts",
"script:generate-readmes": "node --import tsx --env-file-if-exists .env scripts/generate-readmes.ts",
"script:multi-ranking": "node --import tsx --env-file-if-exists .env scripts/check-multi-ranking.ts",
"script:submit-puzzle": "node --import tsx --env-file-if-exists .env scripts/submit-puzzle.ts",
"script:submit-all-langs": "node --import tsx --env-file-if-exists .env scripts/submit-all-langs.ts",
"script:submit-golf": "node --import tsx --env-file-if-exists .env scripts/submit-golf.ts",
"script:submit-optim": "node --import tsx --env-file-if-exists .env scripts/submit-optim.ts",
"script:grind-plays": "node --import tsx --env-file-if-exists .env scripts/grind-plays.ts",
"script:all-solutions": "node --import tsx scripts/generate-all-solutions.ts"
},
"dependencies": {
"@google/genai": "^1.9.0",
"axios": "^1.10.0",
"dayjs": "^1.11.13",
"node-html-markdown": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@tsconfig/node22": "^22.0.2",
"@types/node": "^25.5.0",
"tsx": "^4.20.3",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}