-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.61 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
{
"name": "codogotchi",
"license": "MIT",
"module": "index.ts",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"sync": "bash .son-of-anton/scripts/soa-sync.sh",
"deliver": "bun run .son-of-anton/scripts/deliver.ts",
"closeout-stack": "bun run .son-of-anton/scripts/closeout-stack.ts",
"build:binaries": "bash scripts/build-binaries.sh",
"format": "biome format --write .",
"format:quiet": "biome format --write . --log-level=error",
"lint": "biome lint --write .",
"lint:quiet": "biome lint --write . --log-level=error",
"check": "biome check --write .",
"verify": "biome check .",
"verify:quiet": "biome check . --log-level=error",
"test": "bun test packages convex",
"ci": "bun run verify && bun run test && bun run mac:test",
"ci:quiet": "bun run verify:quiet && bun run test && bun run mac:test",
"mac:build": "xcodebuild -project apps/menubar/Codogotchi.xcodeproj -scheme Codogotchi build",
"mac:test": "xcodebuild -project apps/menubar/Codogotchi.xcodeproj -scheme Codogotchi test"
},
"dependencies": {
"@auth/core": "^0.37.0",
"@codogotchi/contracts": "workspace:*",
"@codogotchi/engine": "workspace:*",
"@codogotchi/pets": "workspace:*",
"@convex-dev/auth": "^0.0.93",
"@oslojs/crypto": "^1.0.1",
"image-size": "^1.2.1",
"jszip": "^3.10.1",
"resend": "^6.12.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/bun": "latest",
"convex": "^1.17.0",
"convex-test": "^0.0.52",
"jose": "^6.2.3"
},
"peerDependencies": {
"typescript": "^5"
}
}