-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.44 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
{
"name": "@bemi-db/supabase-js",
"version": "0.1.0",
"description": "Automatic data change tracking for Supabase JS",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"bemi": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/BemiHQ/bemi-supabase-js.git"
},
"author": "",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/BemiHQ/bemi-supabase-js/issues"
},
"homepage": "https://github.com/BemiHQ/bemi-supabase-js#readme",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.14.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsup",
"test": "jest --watch"
},
"registry-url": "https://registry.npmjs.org/",
"tsup": {
"entry": [
"src/index.ts",
"src/cli.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}