-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
{
"name": "check-terraform-updates",
"version": "0.0.1",
"author": {
"name": "shinebayar-g",
"url": "https://github.com/shinebayar-g"
},
"license": "MPL-2.0",
"homepage": "https://github.com/shinebayar-g/check-terraform-updates",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shinebayar-g/check-terraform-updates.git"
},
"bugs": {
"url": "https://github.com/shinebayar-g/check-terraform-updates/issues"
},
"keywords": [
"terraform",
"provider",
"module",
"modules",
"check",
"updates"
],
"type": "module",
"engines": {
"node": ">=20.18"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"bin": {
"check-terraform-updates": "./dist/index.js"
},
"scripts": {
"lint": "biome lint",
"add_shebang": "perl -i -pe 's,#!/usr/bin/env tsx,#!/usr/bin/env node,g' dist/index.js",
"build": "rm -rf dist && tsc && pnpm run add_shebang && chmod +x dist/index.js",
"prepack": "pnpm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.2",
"typescript": "5.7.2"
},
"dependencies": {
"commander": "^12.1.0",
"picocolors": "^1.1.1"
}
}