-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.93 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.93 KB
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
102
103
104
105
106
107
108
109
{
"name": "forge-fsql",
"version": "1.4.0",
"type": "module",
"description": "Interactive SQL CLI for Atlassian Forge SQL via web triggers",
"packageManager": "pnpm@10.17.0",
"engines": {
"node": "22"
},
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fsql": "bin/fsql.js",
"fsql-setup": "bin/setup.js",
"fsql-export": "bin/fsql-export.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist",
"bin",
"templates",
"README.md"
],
"scripts": {
"build": "sh bin/build",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"fsql": "node ./bin/fsql.js",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint '**/*.{ts,tsx,js,jsx}' --ignore-pattern '**/eslint.config.js'",
"lint:prettier": "prettier '**/*.{ts,tsx,js,jsx,json,md,yaml,yml}' --check || echo '⚠️ Warning: Prettier formatting issues found. Run \"pnpm fixstyle\" to fix them.'",
"typecheck": "tsc --noEmit",
"fixall": "pnpm fixstyle && pnpm fixsrc",
"fixsrc": "eslint '**/*.{ts,tsx,js,jsx}' --ignore-pattern '**/eslint.config.js' --fix",
"fixstyle": "prettier '**/*.{ts,tsx,js,jsx,json,md,yaml,yml}' --write",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"prepare": "husky",
"prepublishOnly": "pnpm build"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}": [
"pnpm fixstyle",
"pnpm run lint:eslint"
]
},
"keywords": [
"forge",
"sql",
"cli",
"atlassian"
],
"author": "Chris Hatch",
"license": "MIT",
"pnpm": {
"overrides": {
"@isaacs/brace-expansion": "5.0.1",
"diff": "4.0.4",
"flatted": "3.4.1",
"undici": "7.24.4",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"minimatch@>=10.0.0 <10.2.4": "10.2.4",
"ajv@<6.14.0": "6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": "8.18.0"
}
},
"dependencies": {
"@forge/api": "^6.4.2",
"@forge/sql": "^3.0.14",
"chalk": "^5.4.1",
"cli-table3": "^0.6.3",
"dotenv": "^16.0.3",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@types/node": "^22.19.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "9.39.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.3",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.1.0"
}
}