-
-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 5.03 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 5.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "vxrn-monorepo",
"version": "0.0.0",
"private": true,
"repository": {
"url": "https://github.com/onejs/one"
},
"workspaces": [
"./apps/*",
"./packages/*",
"./examples/*",
"./tests/*"
],
"packageManager": "bun@1.3.9",
"engines": {
"node": "24.3.0",
"npm": "10.8.3"
},
"trustedDependencies": [
"@swc/core",
"esbuild",
"sharp"
],
"manypkg": {
"workspaceProtocol": "require",
"ignoredRules": [
"INVALID_DEV_AND_PEER_DEPENDENCY_RELATIONSHIP",
"UNSORTED_DEPENDENCIES"
]
},
"scripts": {
"build": "turbo run build --filter='*' --filter='!example/*' --filter='!one-tray'",
"build:js": "bun run build --no-cache --force -- --skip-types",
"check:deps": "manypkg check",
"check": "bun check:deps & turbo check",
"ci": "bun install && bun run build && bun run check && bun run typecheck && bun run lint && bun run test && git diff --exit-code",
"clean": "bun run turbo:run clean:build",
"clean:all": "bun run clean:build && find . -name 'node_modules' -type d -prune -exec rm -rf {} +",
"clean:build": "bun run turbo:run clean:build",
"clean:ts": "tsc -b --clean tsconfig.json",
"dev:example": "bun ./scripts/dev.ts example",
"dev:test": "bun ./scripts/dev.ts test",
"dev:uniswap": "bun run dev:test uniswap",
"docker:build": "DOCKER_BUILDKIT=1 docker build --ssh default -t one-test .",
"fix": "bun run format & bun run fix:packages",
"fix:packages": "manypkg fix",
"fix:references": "update-ts-references",
"format": "oxfmt -c .prettierrc",
"format:check": "oxfmt -c .prettierrc --check",
"lint": "oxlint",
"lint:fix": "oxfmt -c .prettierrc && oxlint --fix --fix-suggestions",
"npxone": "node ./packages/create-vxrn/run.js",
"one": "cd examples/one-basic && bun run",
"release": "bun ./scripts/release.ts",
"sandbox": "cd tests/sandbox && bun run dev",
"setup": "bun ./scripts/setup.ts",
"site": "cd apps/onestack.dev && bun run dev",
"site:build": "cd apps/onestack.dev && bun run build:web",
"site:prod": "bun run site:build && bun run site:serve",
"site:serve": "cd apps/onestack.dev && bun run serve --host 0.0.0.0 --port 3000",
"start": "cd examples/one-basic && bun run dev",
"test": "bun run turbo:run test --concurrency=4",
"tray": "cd apps/one-tray && bun run tray",
"test:native": "./scripts/test-ios.sh",
"test-ios": "./scripts/test-ios.sh",
"test-ios:run": "turbo run test-ios --concurrency=1 --filter=!test-hmr",
"test:docker": "DOCKER_BUILDKIT=1 docker build --no-cache --ssh default -t one-test . && docker run --rm one-test",
"test:one": "cd packages/one && bun run test",
"test:one:dev": "cd packages/one && bun run test:dev",
"test:vite-ecosystem-ci": "cd tests/test && bun run test",
"turbo:run": "TURBO_TELEMETRY_DISABLED=1 turbo",
"typecheck": "turbo typecheck",
"up": "tko up",
"watch": "npm-run-all --parallel watch:ts watch:build",
"watch:build": "SKIP_TYPES_INITIAL=1 ultra -r --no-pretty --concurrency 400 watch",
"watch:js": "SKIP_TYPES=1 bun run watch:build",
"watch:ts": "ultra -r --no-pretty --concurrency 400 typecheck -w --preserveWatchOutput"
},
"resolutions": {
"@isaacs/brace-expansion": "5.0.1",
"@xmldom/xmldom": "0.9.10",
"fast-xml-parser": "5.5.6",
"tar": "7.5.11",
"undici": "7.24.3",
"esbuild": "0.25.11",
"vite": "8.0.10",
"basic-ftp": "5.3.0",
"drizzle-orm": "0.45.2",
"lodash": "4.18.1",
"expo": "55.0.7",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-native": "0.83.2",
"@react-navigation/native": "7.2.2",
"react-native-reanimated": "4.2.1",
"minimatch": "3.1.5",
"node-forge": "1.4.0",
"picomatch": "^4.0.4",
"cross-spawn": "7.0.6",
"got": "11.8.5",
"hono": "4.12.5",
"fastify": "5.7.2"
},
"devDependencies": {
"@hono/node-server": "^1.19.10",
"@manypkg/cli": "^0.25.1",
"@take-out/cli": "0.1.12",
"@types/react": "^19.2.2",
"check-dependency-version-consistency": "^3.0.3",
"fast-flow-transform": "^0.0.3",
"hono": "^4.12.8",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.16.0",
"oxlint": "^1.31.0",
"p-map": "^7.0.3",
"patch-package": "^8.0.0",
"playwright": "^1.58.2",
"prettier": "^3.5.3",
"tamagui": "2.0.0-rc.40",
"ts-pattern": "^5.6.2",
"turbo": "^2.1.0",
"typescript": "^5.7.3",
"ultra-runner": "^3.10.5",
"update-ts-references": "^3.4.0",
"zod": "3.25.67"
},
"upgradeSets": {
"takeout": [
"@take-out/*",
"on-zero"
],
"tamagui": [
"tamagui",
"@tamagui/*"
],
"one": [
"one",
"vxrn",
"@vxrn/*"
],
"zero": [
"@rocicorp/zero"
],
"better-auth": [
"better-auth",
"@better-auth/*"
]
},
"agent": {
"memory": true
},
"patchedDependencies": {
"@expo/plist@0.5.2": "patches/@expo%2Fplist@0.5.2.patch",
"plist@3.1.0": "patches/plist@3.1.0.patch",
"@tamagui/web@2.0.0-rc.32": "patches/@tamagui%2Fweb@2.0.0-rc.32.patch"
}
}