-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 974 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 974 Bytes
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
{
"name": "pgflow",
"version": "0.13.3",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pgflow-dev/pgflow",
"directory": "pkgs/cli"
},
"type": "module",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"bin": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"devDependencies": {
"@types/node": "^22.14.1",
"tsx": "^4.19.3"
},
"dependencies": {
"@clack/prompts": "^0.10.1",
"@commander-js/extra-typings": "^13.1.0",
"@decimalturn/toml-patch": "0.3.7",
"@pgflow/core": "workspace:*",
"chalk": "^5.4.1",
"commander": "^13.1.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"postinstall": "chmod +x dist/index.js || true"
}
}