-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 4.09 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
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
{
"name": "@arrirpc/source",
"version": "0.72.0",
"author": {
"name": "joshmossas",
"url": "https://github.com/joshmossas"
},
"type": "module",
"license": "MIT",
"bugs": {
"url": "https://github.com/modiimedia/arri/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/modiimedia/arri.git"
},
"scripts": {
"typecheck": "nx run-many -t typecheck",
"format": "pnpm prettier --write **/*.ts **/**/*.ts **/**/**/*.ts **/**/**/**/*.ts **/**/**/**/**/*.ts **/*.json **/**/*.json **/**/**/*.json **/**/**/**/*.json **/**/**/**/**/*.json",
"test": "nx run-many -t test",
"test:skip-cache": "nx run-many -t test --skip-nx-cache",
"build": "nx run-many -t build --exclude=ts-playground,go-playground",
"build:skip-cache": "nx run-many -t build --skip-nx-cache --exclude=ts-playground,go-playground",
"compile": "nx run-many -t compile",
"compile:skip-cache": "nx run-many -t compile --skip-nx-cache",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint --fix",
"lint:skip-cache": "nx run-many -t lint --skip-nx-cache",
"lint:fix:skip-cache": "nx-run-many -t lint --skip-nx-cache",
"integration-tests": "jiti internal/scripts/run-integration-tests.ts",
"integration-tests:run-tests": "nx run-many -t integration-test --parallel=false",
"integration-tests:run-tests-parallel": "nx run-many -t integration-test",
"integration-tests:run-tests:affected": "nx affected -t integration-test --parallel=false",
"integration-tests:run-tests-parallel:affected": "nx affected -t integration-test",
"integration-tests:run-tests-parallel:exclude-flaky": "nx run-many -t integration-test --exclude test-client-kotlin,test-client-swift",
"integration-tests:run-tests-parallel:affected:exclude-flaky": "nx affected -t integration-test --exclude test-client-kotlin,test-client-swift",
"integration-tests-ts": "start-server-and-test 'integration-tests-ts:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests'",
"integration-tests-ts:start-server": "nx build-server test-server-ts && node tests/servers/ts/.output/server.mjs --host",
"integration-tests-ts:affected": "start-server-and-test 'integration-tests-ts:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests:affected'",
"integration-tests-go": "start-server-and-test 'integration-tests-go:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests-parallel:exclude-flaky'",
"integration-tests-go:start-server": "nx build-server test-server-go && tests/servers/go/.output/server",
"integration-tests-go:affected": "start-server-and-test 'integration-tests-go:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests-parallel:affected:exclude-flaky'",
"benchmark-test-server": "jiti tests/clients/ts/serverBenchmark.ts",
"server-output-test": "jiti tests/server-output-test.ts",
"scaffold": "jiti internal/scripts/scaffold-package.ts",
"postversion": "jiti internal/scripts/version-sync.ts",
"gen-test-utils": "jiti internal/scripts/generate-test-utils.ts",
"publish-all": "pnpm run build && sh internal/scripts/publish-all.sh"
},
"private": true,
"devDependencies": {
"@eslint/js": "9.18.0",
"@sinclair/typebox": "^0.34.13",
"@types/lodash": "^4.17.14",
"@types/node": "22.10.6",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"autocannon": "^8.0.0",
"bun-types": "^1.1.43",
"citty": "^0.1.6",
"depcheck": "^1.4.7",
"esbuild": "0.24.2",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globby": "^14.0.2",
"jiti": "^2.4.2",
"lodash": "^4.17.21",
"nx": "20.3.1",
"pathe": "^2.0.1",
"prettier": "^3.4.2",
"scule": "^1.3.0",
"start-server-and-test": "^2.0.10",
"typescript": "5.7.3",
"typescript-eslint": "^8.20.0",
"unbuild": "^3.3.1",
"vite": "6.0.7",
"vitest": "2.1.8",
"zod": "^3.24.1"
},
"nx": {
"includedScripts": []
},
"packageManager": "pnpm@9.6.0"
}