-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "workspace-archive",
"displayName": "workspace-archive",
"description": "Archive your project to zip file",
"version": "1.0.24",
"icon": "images/icon.png",
"publisher": "Coders",
"homepage": "https://github.com/CodersAKL/workspace-archive",
"bugs": "https://github.com/CodersAKL/workspace-archive/issues",
"repository": {
"type": "git",
"url": "https://github.com/CodersAKL/workspace-archive.git"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.workspace.archive"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.workspace.archive",
"title": "Archive project"
}
]
},
"scripts": {
"vscode:prepublish": "yarn compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run lint",
"test": "yarn compile && node ./node_modules/vscode/bin/test",
"posttest": "npm run format",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"lint": "eslint . --cache --fix --ext .ts,.tsx"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/archiver": "^5.1.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"@types/npm-packlist": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"prettier": ">=2",
"typescript": "^4.1.2",
"vscode": "^1.1.37"
},
"dependencies": {
"adm-zip": "^0.5.1",
"npm-packlist": "^2.1.4"
}
}