-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.85 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
{
"name": "anydown",
"displayName": "Anydown",
"description": "",
"version": "0.2.2",
"icon": "icon.png",
"engines": {
"vscode": "^1.41.0"
},
"repository": {
"url": "https://github.com/anydown/vscode-anydown"
},
"publisher": "hashrock",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:anydown",
"onCommand:anydown.showPreview"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "anydown.showPreview",
"title": "Preview"
}
],
"menus": {
"editor/title": [
{
"command": "anydown.showPreview",
"when": "resourceLangId == anydown",
"group": "navigation"
}
]
},
"languages": [
{
"id": "anydown",
"extensions": [
".anydown",
".anydown.md"
],
"aliases": [
"AnyDown",
"anydown"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"build": "parcel build front/index.js -d assets",
"dev": "parcel front/index.js -d assets",
"compile": "tsc -p ./ && npm run build",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"publish": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.41.0",
"@vue/component-compiler-utils": "^3.1.0",
"cssnano": "^4.1.10",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"parcel": "^1.12.4",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vscode-test": "^1.2.2",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"@anydown/anydown-core": "^1.1.3",
"d3-scale": "^3.2.1",
"vue": "^2.6.11",
"vue-hot-reload-api": "^2.3.4"
}
}