-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 3.09 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
101
102
103
104
{
"version": "0.28.0",
"name": "shortcut-com",
"displayName": "shortcut.com",
"publisher": "danielgriffiths",
"description": "Use Shortcut in VSCode",
"icon": "src/assets/images/logo.png",
"scripts": {
"tsc": "tsc --noEmit",
"test": "jest --passWithNoTests",
"lint": "eslint \"**/*.ts*\" --fix",
"build": "tsc -p ./"
},
"contributes": {
"commands": [
{
"command": "shortcut.getStories",
"title": "Shortcut: Get Stories"
},
{
"command": "shortcut.createStory",
"title": "Shortcut: Create New Story"
},
{
"command": "shortcut.setBaseBranch",
"title": "Shortcut: Set Base Branch"
},
{
"command": "shortcut.search",
"title": "Shortcut: Search Stories"
},
{
"command": "shortcut.createPullRequest",
"title": "Shortcut: Create Pull Request"
},
{
"command": "shortcut.createCommit",
"title": "Shortcut: Create Commit"
}
],
"configuration": {
"type": "object",
"title": "shortcut configuration",
"properties": {
"shortcut.token": {
"type": "string",
"default": "",
"markdownDescription": "The [token](https://app.shortcut.com/settings/account/api-tokens) used to communicate with the Shortcut api"
},
"shortcut.username": {
"type": "string",
"default": "",
"markdownDescription": "Your username on Shortcut, this is used to determine which stories are assigned to you"
},
"shortcut.workplaceSlug": {
"type": "string",
"default": "",
"description": "This is the slug of the workplace you are working in, this can be found in the url of the shortcut.com website, for example if your url is `https://app.shortcut.com/your-workplace-slug` then your workplace slug is `your-workplace-slug`, this is used when opening stories in the browser."
},
"shortcut.branchFormat": {
"type": "string",
"default": "[story_type]/[story_id]/[story_name]",
"description": "The default branch name format when creating new branches"
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/Daniel-Griffiths/vscode-shortcut.git"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.17.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@shortcut/client": "^1.1.0",
"@types/vscode": "^1.93.0",
"axios": "^1.7.7",
"eslint-config-airbnb": "^19.0.4",
"lodash": "^4.17.20"
}
}