-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.05 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
{
"name": "@hyodotdev/openiap",
"private": true,
"version": "1.0.0",
"description": "OpenIAP - Open In-App Purchase monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"dev": "bun run --filter '*' dev",
"test": "bun run --filter '*' test",
"lint": "bun run --filter '*' lint",
"audit:parity": "node scripts/audit-non-godot-parity.mjs",
"audit:docs": "bun run scripts/audit-docs.ts",
"clean": "rm -rf packages/*/node_modules node_modules",
"generate": "cd packages/gql && bun run generate && cd ../apple && ./scripts/generate-types.sh && cd ../google && ./scripts/generate-types.sh",
"version:sync": "bun scripts/sync-versions.mjs",
"version:bump": "bun scripts/bump-version.mjs",
"deploy": "./scripts/deploy.sh",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"typescript": "^5.9.2"
},
"overrides": {
"csstype": "3.2.3",
"fast-uri": "3.1.2",
"hono": "4.12.18",
"ip-address": "10.2.0"
},
"packageManager": "bun@1.3.13"
}