-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.24 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
{
"publisher": "quinton-ashley",
"author": {
"name": "quinton-ashley",
"email": "[email protected]"
},
"name": "p5play-vscode",
"displayName": "p5play VSCode",
"description": "Create and run p5play projects!",
"main": "extension.js",
"icon": "assets/p5play_logo.png",
"license": "AGPL-3.0",
"contributes": {
"commands": [
{
"command": "p5play-vscode.newProject",
"title": "p5play: New Project"
}
]
},
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Education"
],
"engines": {
"vscode": "^1.74.0"
},
"keywords": [
"p5.play",
"game engine",
"js game",
"javascript game",
"p5 play",
"p5",
"p5.js",
"p5js"
],
"repository": {
"type": "git",
"url": "https://github.com/quinton-ashley/p5play-vscode.git"
},
"version": "1.3.10",
"__metadata": {
"id": "91a3a7ba-83a7-4910-919a-d1c0a8667c67",
"publisherDisplayName": "quinton-ashley",
"publisherId": "ffc5f242-1f90-4671-802d-b2e0e4616e10",
"isPreReleaseVersion": false
},
"scripts": {
"v": "npm version patch --force",
"V": "npm version minor --force",
"version": "git add -A",
"postversion": "git push",
"dist": "vsce package && vsce publish"
},
"dependencies": {
"@bitjson/qr-code": "^1.0.2",
"live-server": "^1.2.2"
}
}