-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.95 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
105
106
107
108
{
"name": "distributed-package-manager",
"displayName": "Distributed Package Manager",
"description": "Distributed Package Manager is VSCode extension that allows you to install and manage packages from sources different than the official marketplace.",
"preview": false,
"publisher": "ionide",
"contributors": [
{
"name": "Krzysztof Cieślak",
"url": "https://twitter.com/k_cieslak"
}
],
"icon": "assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/Krzysztof-Cieslak/distributed-package-manager.git"
},
"bugs": {
"url": "https://github.com/Krzysztof-Cieslak/distributed-package-manager/issues"
},
"version": "0.2.0",
"license": "MIT",
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Distributed Package Manager",
"properties": {
"distributed-package-manager.sources": {
"type": "array",
"default": [],
"description": "Sources for extensions managed by Distributed Package Manager",
"scope": "application",
"items": {
"properties": {
"type": {
"type": "string",
"description": "Type of source",
"enum": [
"gh-release"
]
}
},
"if": {
"properties": {
"type": {
"const": "gh-release"
}
}
},
"then": {
"properties": {
"repository": {
"type": "string",
"description": "Repository name in the format owner/repo"
},
"titleFilter": {
"type": "string",
"description": "Only consider releases with matching title"
}
},
"required": [
"repository"
]
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run lint && yarn run prettier-check && yarn run type-check && yarn run compile --production",
"compile": "node ./esbuild.js",
"compile:watch": "node ./esbuild.js --watch",
"type-check": "tsc --noEmit --preserveWatchOutput -p .",
"type-check:watch": "yarn run type-check -- --watch",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,ESBuild\" -c \"yellow.bold,cyan.bold\" \"yarn run type-check:watch\" \"yarn run compile:watch\"",
"prettier-check": "prettier **/*.ts --check",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/md5": "^2.3.5",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"concurrently": "^8.2.2",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"md5": "^2.3.0"
}
}