-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 1.7 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
{
"name": "p5-vscode",
"publisher": "samplavigne",
"displayName": "p5.vscode",
"description": "Create and manage p5.js projects.",
"version": "1.2.15",
"repository": "https://github.com/antiboredom/p5.vscode",
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"p5.js",
"p5",
"generator",
"project",
"template"
],
"icon": "images/asterisk.png",
"activationEvents": [
"onCommand:p5-vscode.createProject",
"onCommand:p5-vscode.installLibrary",
"workspaceContains:sketch.js"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "p5-vscode.createProject",
"title": "Create p5.js Project"
},
{
"command": "p5-vscode.installLibrary",
"title": "Install p5.js Contributor Library"
}
]
},
"extensionPack": [
"ritwickdey.liveserver"
],
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js",
"update-libraries": "node create_library_json.js",
"update-p5": "./update-p5.sh"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.52",
"@types/vscode": "^1.68.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"glob": "^7.2.3",
"js-yaml": "^3.14.1",
"mocha": "^7.2.0",
"typescript": "^4.9.3",
"vscode-test": "^1.6.1"
},
"dependencies": {
"got": "^11.8.5"
}
}