-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.01 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
{
"name": "@supabase/api",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": {
"bun": "./src/bun.ts",
"default": "./src/node.ts"
},
"./effect": "./src/effect.ts",
"./openapi.json": "./src/generated/openapi.json"
},
"scripts": {
"generate:spec": "bun run scripts/download-openapi.ts",
"generate": "bun run generate:spec && bun run scripts/generate.ts",
"test": "nx run-many -t test:core test:e2e --projects=$npm_package_name",
"test:core": "nx run-many -t test:unit test:integration --projects=$npm_package_name",
"check:all": "nx run-many -t types:check lint:check fmt:check knip:check --projects=$npm_package_name",
"fix:all": "nx run-many -t lint:fix fmt:fix knip:fix --projects=$npm_package_name"
},
"dependencies": {
"@effect/platform-bun": "catalog:",
"@effect/platform-node": "catalog:",
"effect": "catalog:",
"undici": "^8.4.0"
},
"devDependencies": {
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@typescript/native-preview": "catalog:",
"@vitest/coverage-istanbul": "catalog:",
"knip": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"vitest": "catalog:"
},
"knip": {
"entry": [
"src/effect.ts",
"src/bun.ts",
"src/node.ts",
"src/**/*.test.ts",
"scripts/download-openapi.ts",
"scripts/download-openapi.unit.test.ts",
"scripts/generate.ts",
"scripts/generate.unit.test.ts"
],
"ignoreDependencies": [
"undici",
"@typescript/native-preview",
"oxfmt",
"oxlint",
"oxlint-tsgolint"
],
"ignoreBinaries": [
"nx"
]
},
"nx": {
"targets": {
"generate": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm run generate",
"cwd": "{projectRoot}"
},
"outputs": [
"{projectRoot}/src/generated"
]
}
}
},
"oxlint": {
"typeAware": true
}
}