-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "art-tutorial",
"displayName": "Art Tutorial",
"description": "An interactive tutorial for learning the Art language and Code RealTime",
"repository": {
"type": "git",
"url": "https://github.com/HCL-TECH-SOFTWARE/code-realtime-art-tutorial"
},
"publisher": "secure-dev-ops",
"version": "1.0.2",
"engines": {
"vscode": "^1.74.0"
},
"keywords": [
"Art",
"Code RealTime",
"Code RT",
"realtime",
"tutorial"
],
"icon": "icons/code_rt_tutorial_icon.png",
"categories": [
"Other"
],
"license": "Apache-2.0",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "art-tutorial.exercises",
"title": "Exercises",
"category": "Art Tutorial"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"clean": "rimraf out/",
"build": "npm run clean && tsc"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/showdown": "^2.0.6",
"@types/vscode": "^1.74.1",
"eslint": "^7.32.0",
"rimraf": "^6.0.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@vscode/vsce": "^3.9.1",
"node-html-parser": "^7.1.0",
"showdown": "^2.1.0",
"jsdom": "^29.1.1",
"dompurify": "^3.4.5"
}
}