-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 964 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
31
32
33
34
35
36
37
38
39
{
"private": true,
"name": "mono",
"type": "module",
"module": "index.ts",
"scripts": {
"aoc": "turbo aoc",
"build": "turbo build",
"dev": "bun run rs && bun run ts",
"fmt": "bun fmt:rs && bun fmt:ts",
"fmt:rs": "cargo fmt",
"fmt:ts": "prettier --write .",
"new": "turbo aoc:today",
"rs": "turbo rust",
"start": "bun rs && bun ts",
"ts": "turbo ts"
},
"workspaces": [
"code/ts/*",
"code/ts",
"code/rs",
"libs/aoc"
],
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@bravo68web/prettier-config": "1.2.2",
"@bravo68web/tsconfig": "^1.2.2",
"bun-types": "latest",
"prettier": "^3.1.0",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.0.10",
"prettier": "@bravo68web/prettier-config"
}