-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "supastruct",
"version": "0.1.3",
"description": "Parse Supabase.js queries into mutable objects, and vice versa.",
"main": "dist/index",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "tsc -p tsconfig.json -w",
"build": "npm run build-ts",
"build-ts": "tsc -p tsconfig.json",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaelansmith/supastruct.git"
},
"keywords": [
"supastruct",
"supabase",
"supabase-js",
"supabase.js",
"structural",
"parser"
],
"author": "Kaelan Smith",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/kaelansmith/supastruct/issues"
},
"homepage": "https://github.com/kaelansmith/supastruct#readme",
"devDependencies": {
"@types/node": "^18.18.1",
"tsc-watch": "^5.0.3",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@supabase/postgrest-js": ">= 1.1.x",
"@supabase/supabase-js": ">= 2.7.1"
}
}