-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ghost",
"displayName": "Ghost",
"description": "Official Ghost extension for theme development in Visual Studio Code.",
"publisher": "TryGhost",
"icon": "images/ghost.png",
"galleryBanner": {
"color": "#15171A",
"theme": "dark"
},
"version": "1.5.1",
"keywords": [
"Ghost",
"Theme"
],
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:handlebars"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "ghost.docs",
"title": "Search docs",
"category": "Ghost"
},
{
"command": "ghost.gscan",
"title": "Scan your theme for errors with Gscan",
"category": "Ghost"
},
{
"command": "ghost.deploy",
"title": "Add GitHub Actions code for automatic theme deploys",
"category": "Ghost"
}
],
"configuration": {
"title": "Ghost",
"properties": {
"ghost.openDocsLocation": {
"type": "string",
"enum": [
"browser",
"vscode"
],
"enumDescriptions": [
"Open Ghost docs in your browser",
"Open Ghost docs in VS Code"
],
"default": "vscode",
"description": "Configure whether you want Ghost to open docs in VS Code (default) or the browser"
}
}
}
},
"repository": {
"url": "https://github.com/TryGhost/vscode"
},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run -S esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch",
"fmt": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext ts --fix",
"test": "eslint src --ext ts && tsc --noEmit"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.20.2",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 2,
"arrowParens": "avoid"
},
"license": "MIT",
"dependencies": {
"axios": "^1.2.4"
}
}