-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.65 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
{
"name": "@t1mmen/srtd",
"version": "0.4.7",
"license": "MIT",
"description": "Supabase Repeatable Template Definitions (srtd): 🪄 Live-reloading SQL templates for Supabase DX. Make your database changes reviewable and migrations maintainable! 🚀",
"bin": {
"srtd": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rm -rf dist; rm -rf build; rm -rf coverage; npm run supabase:stop",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"build": "rm -rf dist && tsc",
"typecheck": "tsc --noEmit",
"lint": "biome lint . --write",
"format": "biome format . --write",
"dev": "tsc --watch",
"test": "vitest",
"test:coverage": "vitest run --coverage --reporter=junit --outputFile=test-report.junit.xml",
"start": "tsx src/cli.tsx",
"start:link": "npm run build && npm link && chmod u+x ./dist/cli.js && srtd",
"repomix": "mkdir build; npx repomix",
"supabase:start": "npx supabase start",
"supabase:stop": "npx supabase stop",
"vhs": "chmod +x scripts/record_demo.sh && ./scripts/record_demo.sh"
},
"files": [
"dist"
],
"author": {
"name": "Timm Stokke",
"email": "timm@stokke.me",
"url": "https://timm.stokke.me"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/t1mmen/srtd.git"
},
"bugs": {
"url": "https://github.com/t1mmen/srtd/issues"
},
"homepage": "https://github.com/t1mmen/srtd#readme",
"os": [
"darwin",
"linux",
"win32"
],
"keywords": [
"cli",
"migrations",
"database",
"postgresql",
"supabase",
"sql-templates",
"live-reload",
"hot-reload",
"repeatable-migrations",
"database-migrations",
"supabase-cli"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"chokidar": "^4.0.3",
"conf": "^13.1.0",
"figures": "^6.1.0",
"glob": "^10.0.0",
"ink": "^5.1.0",
"pastel": "^3.0.0",
"pg": "^8.13.1",
"react": "^18.3.0",
"update-notifier": "^7.3.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.11",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/glob": "^8.1.0",
"@types/node": "^20.17.10",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.0",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^2.1.8",
"chalk": "^5.4.1",
"ink-testing-library": "^4.0.0",
"lefthook": "^1.10.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}