forked from supabase/supabase-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.5 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
{
"name": "@supabase-js/source",
"version": "0.0.0",
"license": "MIT",
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499",
"scripts": {
"preinstall": "node scripts/preinstall.js",
"commit": "cz",
"prepare": "husky",
"codegen": "node scripts/sync-common-types.js",
"codegen:check": "node scripts/sync-common-types.js && git diff --exit-code packages/core/supabase-js/src/lib/rest/types/common && echo '\n✅ Generated types are in sync!' || (echo '\n❌ Generated types are out of sync.\n Run: pnpm codegen\n Then commit the changes.\n' && exit 1)",
"codegen:postgrest": "node scripts/generate-postgrest-types.js",
"codegen:check:postgrest": "node scripts/generate-postgrest-types.js && git diff --exit-code packages/core/postgrest-js/test/types.generated.ts && echo '\n✅ Postgrest generated types are in sync!' || (echo '\n❌ Postgrest generated types are out of sync.\n Run: pnpm codegen:postgrest\n Then commit the changes.\n' && exit 1)",
"release-canary": "pnpm exec tsx scripts/release-canary.ts",
"release-beta": "pnpm exec tsx scripts/release-beta.ts",
"release-stable": "pnpm exec tsx scripts/release-stable.ts"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@eslint/js": "^10.0.1",
"@nx/eslint": "22.7.1",
"@nx/eslint-plugin": "22.7.1",
"@nx/jest": "22.7.1",
"@nx/js": "22.7.1",
"@nx/playwright": "22.7.1",
"@nx/vite": "22.7.1",
"@nx/vitest": "22.7.1",
"@nx/web": "22.7.1",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.21",
"@types/node": "20.19.9",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"commitizen": "^4.3.1",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jiti": "2.4.2",
"jsonc-eslint-parser": "^2.1.0",
"jsr": "^0.13.5",
"nx": "22.7.1",
"prettier": "^3.6.2",
"supabase": "2.105.0",
"ts-node": "^10.9.1",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.21.0",
"vite": "7.3.5"
},
"dependencies": {},
"pnpm": {
"overrides": {
"unrun": ">=0.2.39 <0.3.0"
}
}
}