-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 4.6 KB
/
Copy pathpackage.json
File metadata and controls
163 lines (163 loc) · 4.6 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "zist",
"displayName": "Zist",
"icon": "media/logo.png",
"description": "Manage your github gist using Zist.",
"version": "0.0.17",
"publisher": "Mukun",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Snippets"
],
"keywords": [
"Github Gist",
"Snippet Management",
"Snippets",
"Workflow"
],
"author": {
"name": "Mukun",
"email": "millanpoudel1@gmail.com",
"url": "https://twitter.com/PoudelMillan"
},
"activationEvents": [
"onCommand:zist.capture-selected-text",
"onCommand:zist.sidebar-accordian-list",
"onView:explorer",
"onView:file",
"onStartupFinished",
"onDidChangeTextEditorSelection",
"onDidChangeActiveTextEditor"
],
"main": "./dist/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/vortexnet/zist-vscode"
},
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "zist-activitybar",
"title": "Zist",
"icon": "media/snippet.svg"
}
]
},
"views": {
"zist-activitybar": [
{
"type": "webview",
"id": "zist.sidebar-accordian-list",
"name": "Snippets"
},
{
"type": "webview",
"id": "zist.sidebar-accordian-about",
"name": "About"
}
]
},
"menus": {
"view/title": [
{
"command": "zist.sidebar-accordian-list-sync",
"group": "navigation",
"when": "view == zist.sidebar-accordian-list"
},
{
"command": "zist.sidebar-accordian-about-external",
"group": "navigation",
"when": "view == zist.sidebar-accordian-about"
}
]
},
"commands": [
{
"command": "zist.authenticate",
"title": "Authenticate",
"category": "Zist"
},
{
"command": "zist.fullscreen",
"title": "Toggle Fullscreen",
"category": "Zist"
},
{
"command": "zist.sidebar-accordian-list-sync",
"title": "Sync",
"category": "Zist",
"icon": "$(sync)"
},
{
"command": "zist.sidebar-accordian-about-external",
"title": "About",
"category": "Zist",
"icon": "$(link-external)"
},
{
"command": "zist.explorer-quickpick-input",
"title": "File Name Input",
"category": "Zist"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --config ./build/node-extension.webpack.config.js",
"watch": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\"",
"package": "webpack --mode production --devtool hidden-source-map --config ./build/node-extension.webpack.config.js",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"prepare": "husky install",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write",
"release": "standard-version",
"release-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postrelease": "npm run release-changelog && git add CHANGELOG.md && git commit -m 'chore(release): update changelog' && git push origin develop"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.5.0",
"@tsconfig/svelte": "^1.0.13",
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.3",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^5.3.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^7.2.3",
"highlight.js": "^11.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"mocha": "^8.4.0",
"prettier": "^3.0.3",
"rollup": "^2.79.1",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-svelte": "^7.1.6",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"svelte-check": "^1.6.0",
"svelte-highlight": "^7.3.0",
"svelte-preprocess": "^4.10.7",
"tcs": "^10.0.2",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5",
"vscode-test": "^1.6.1",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"axios": "^1.5.0",
"svelte": "^3.59.2"
}
}