-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.65 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
{
"displayName": "VSCode Paper",
"name": "vscode-paper",
"description": "Extension that allows you to use paper.js right in your VSCode with live reloading",
"version": "0.0.4",
"publisher": "xahon",
"repository": {
"type": "git",
"url": "https://github.com/xahon/vscode-paper.git"
},
"bugs": {
"url": "https://github.com/xahon/vscode-paper/issues"
},
"homepage": "https://github.com/xahon/vscode-paper/blob/master/README.md",
"main": "./out/extension",
"scripts": {
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"keywords": [
"paper.js",
"paperjs",
"drawing",
"vector",
"graphics"
],
"contributors": [
{
"email": "[email protected]",
"name": "Ilya Chernikov"
}
],
"categories": [
"Other"
],
"engines": {
"vscode": "^1.27.x"
},
"contributes": {
"commands": [
{
"command": "vscode-paper.openPreview",
"title": "Create a Paper"
}
]
},
"activationEvents": [
"onCommand:vscode-paper.openPreview"
],
"devDependencies": {
"@types/handlebars": "^4.0.39",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/striptags": "^3.1.1",
"prettier": "^1.14.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^2.6.1",
"vscode": "^1.1.18"
},
"dependencies": {
"babel-standalone": "^6.26.0",
"handlebars": "^4.0.12",
"path": "^0.12.7",
"striptags": "^3.1.1"
}
}