forked from freeCodeCamp/courses-vscode-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.64 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
{
"activationEvents": [
"workspaceContains:**/freecodecamp.conf.json"
],
"author": "freeCodeCamp",
"bugs": {
"url": "https://github.com/freeCodeCamp/courses-vscode-extension/issues"
},
"categories": [
"Education"
],
"contributes": {
"commands": [
{
"command": "freecodecamp-courses.openCourse",
"title": "freeCodeCamp: Open Course"
},
{
"command": "freecodecamp-courses.createNewCourse",
"title": "freeCodeCamp: Create New Course"
},
{
"command": "freecodecamp-courses.runCourse",
"title": "freeCodeCamp: Run Course"
},
{
"command": "freecodecamp-courses.developCourse",
"title": "freeCodeCamp: Develop Course"
},
{
"command": "freecodecamp-courses.collapse",
"title": "freeCodeCamp Dev: Collapse"
},
{
"command": "freecodecamp-courses.shutdownCourse",
"title": "freeCodeCamp: Shutdown Course"
}
],
"jsonValidation": [
{
"fileMatch": "**/freecodecamp.conf.json",
"url": "./schema.json"
}
]
},
"dependencies": {
"node-fetch": "3.3.2"
},
"description": "Provides tooling for quick and easy selection of courses offered by freeCodeCamp",
"devDependencies": {
"@types/node": "20.11.6",
"@types/vscode": "1.85.0",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"@vscode/vsce": "2.22.0",
"eslint": "8.56.0",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"webpack": "5.90.0",
"webpack-cli": "5.1.4"
},
"displayName": "freeCodeCamp - Courses",
"engines": {
"node": "^20.0.0",
"vscode": "^1.85.0"
},
"galleryBanner": {
"color": "#0a0a23",
"theme": "dark"
},
"icon": "images/logo-128X128.png",
"keywords": [
"freecodecamp",
"courses",
"web3",
"rust",
"backend"
],
"license": "BSD-3-Clause",
"main": "./dist/extension.js",
"name": "freecodecamp-courses",
"publisher": "freeCodeCamp",
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/courses-vscode-extension"
},
"scripts": {
"compile": "webpack",
"deploy": "vsce publish",
"lint": "eslint src --ext ts",
"pack": "vsce package",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"test:pack": "npm run pack -- --no-git-tag-version --no-update-package-json 1.0.0 -o freecodecamp-courses-test.vsix",
"vsce": "vsce",
"vscode:prepublish": "npm run package",
"watch": "webpack --watch"
},
"version": "2.1.0"
}