-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.68 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "supamodel",
"description": "Supabase ORM",
"keywords": [
"supabase",
"model",
"orm"
],
"author": "[email protected]",
"license": "MIT",
"version": "0.3.6",
"engines": {
"node": ">=20.7.0 <21.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": false
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:check": "pnpm lint && pnpm typecheck && pnpm test",
"test:coverage": "vitest run --coverage",
"test:coverage:serve": "pnpm exec http-server -a localhost -o ./coverage",
"typecheck": "tsc --project tsconfig.check.json",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "husky install",
"release": "release-it",
"release:pre": "release-it --preRelease"
},
"dependencies": {
"@supabase/postgrest-js": "^1.8.5",
"@supabase/supabase-js": "^2.38.3",
"dotenv": "^16.3.1",
"fast-deep-equal": "^3.1.3",
"inflection": "^3.0.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.foreach": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.mapvalues": "^4.6.0",
"lodash.pick": "^4.4.0",
"lodash.result": "^4.5.2",
"lodash.snakecase": "^4.1.1",
"luxon": "^3.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@types/inflection": "^1.13.1",
"@types/lodash.defaultsdeep": "^4.6.8",
"@types/lodash.foreach": "^4.5.8",
"@types/lodash.isempty": "^4.4.8",
"@types/lodash.mapvalues": "^4.6.8",
"@types/lodash.pick": "^4.4.8",
"@types/lodash.result": "^4.5.8",
"@types/lodash.snakecase": "^4.1.8",
"@types/luxon": "^3.3.3",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"release-it": "^16.2.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
"type-fest": "^4.5.0",
"typescript": "^5.2.2",
"vitest": "^0.34"
}
}