-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 KB
/
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
40
41
42
43
44
45
46
47
48
49
{
"name": "frak-wallet",
"version": "0.1.0",
"description": "Frak ecosystem packages",
"private": true,
"type": "module",
"license": "GNU GPL 3.0",
"scripts": {
"build:infra": "sst build --stage dev",
"build:sdk": "dirs=(core legacy react components); for d in ${dirs[@]}; do bun run --cwd sdk/${d} build; done",
"changeset": "changeset",
"changeset:release": "dirs=(core legacy react components); for d in ${dirs[@]}; do bun run --cwd sdk/${d} publish && bun publish --cwd sdk/${d}; done",
"changeset:version": "changeset version && bun install --lockfile-only",
"clean": "rimraf **/.open-next/ **/.next/ .sst/dist/ .sst/artifacts/",
"deploy": "sst deploy --stage dev",
"deploy:prod": "sst deploy --stage prod",
"dev": "bun sst dev",
"format": "biome check --write .",
"format:check": "biome check .",
"knip": "knip",
"lint": "biome lint .",
"update:deps": "npm-check-updates -ui -ws",
"typecheck": "bun run --filter '*' typecheck"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-git": "^0.2.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.0",
"@pulumi/aws": "^6.68.0",
"@pulumi/pulumi": "^3.150.0",
"@types/node": "^22.13.4",
"knip": "^5.44.1",
"npm-check-updates": "^17.1.14",
"rimraf": "^6.0.1",
"sst": "3.9.4",
"typedoc": "^0.27.7",
"typedoc-plugin-frontmatter": "^1.2.1",
"typedoc-plugin-inline-sources": "^1.2.0",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.7.3"
},
"workspaces": [
"packages/*",
"sdk/*",
"example/*"
],
"packageManager": "[email protected]"
}