-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.68 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
{
"name": "@zendeskgarden/scripts",
"version": "2.4.3",
"description": "Garden Scripts",
"license": "Apache-2.0",
"author": "Zendesk Garden <[email protected]>",
"homepage": "https://garden.zendesk.com/",
"repository": "https://github.com/zendeskgarden/scripts",
"bugs": {
"url": "https://github.com/zendeskgarden/scripts/issues"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"garden": "bin/index.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier-package-json --write && npm run format:all -- --write",
"format:all": "prettier --log-level warn '**/*.{js,ts,json,md}' '!CHANGELOG.md' '!dist/**' '!.github/ISSUE_TEMPLATE.md'",
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "eslint eslint.config.mjs bin/ src/ --max-warnings 0",
"lint:md": "markdownlint README.md src/**/*.md",
"prepare": "husky && npm run build",
"start": "bin/index.js",
"tag": "[ `git rev-parse --abbrev-ref HEAD` = 'main' ] && commit-and-tag-version --no-verify --npmPublishHint 'true'",
"test": "prettier-package-json --list-different && npm run format:all -- --check && npm run lint && npm start --version",
"watch": "npm run build -- --watch"
},
"dependencies": {
"@octokit/graphql": "8.1.1",
"@octokit/request-error": "6.1.5",
"@octokit/rest": "21.0.2",
"chalk": "5.3.0",
"commander": "12.1.0",
"comment-parser": "1.4.1",
"dotenv": "16.4.7",
"execa": "9.5.2",
"figlet": "1.8.0",
"fs-extra": "11.2.0",
"gh-pages": "6.2.0",
"globby": "14.0.2",
"handlebars": "4.7.8",
"handlebars-helpers": "0.10.0",
"is-interactive": "2.0.0",
"is-plain-object": "5.0.0",
"klaw": "4.1.0",
"lerna-changelog": "2.2.0",
"lodash": "4.17.21",
"netlify": "13.1.21",
"netlify-cli": "17.38.0",
"ora": "8.1.1",
"pluralize": "8.0.0",
"react-docgen-typescript": "2.2.2",
"typescript": "5.7.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@types/figlet": "1.7.0",
"@types/fs-extra": "11.0.4",
"@types/gh-pages": "6.1.0",
"@types/handlebars-helpers": "0.5.6",
"@types/klaw": "3.0.6",
"@types/lodash": "4.17.13",
"@types/node": "22.10.1",
"@types/pluralize": "0.0.33",
"@zendeskgarden/eslint-config": "45.0.0",
"commit-and-tag-version": "12.5.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"markdownlint-cli": "0.43.0",
"prettier": "3.4.2",
"prettier-package-json": "2.8.0"
},
"keywords": [
"cli",
"garden",
"tools",
"zendesk"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}