generated from vfshera/svelte-vscode-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.38 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
{
"icon": "assets/images/icon.png",
"name": "vscodelaraveldocs",
"displayName": "Laravel Documentation",
"description": "Laravel Documentation on Visual Studio Code",
"publisher": "FranklinShera",
"author": {
"name": "Franlin Shera"
},
"license": "GPL-3.0",
"version": "2.0.0",
"homepage": "https://github.com/vfshera/laraveldocs-vscode",
"bugs": "https://github.com/vfshera/laraveldocs-vscode/issues",
"repository": {
"url": "https://github.com/vfshera/laraveldocs-vscode",
"type": "git"
},
"keywords": [
"laravel docs",
"laravel documentation",
"laravel"
],
"preview": true,
"engines": {
"vscode": "^1.69.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:artisan"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"icon": "assets/images/laravel.svg",
"id": "laraveldocs-sidebar",
"title": "Laravel Documentation"
}
]
},
"views": {
"laraveldocs-sidebar": [
{
"id": "docs-list",
"type": "webview",
"name": "",
"icon": "assets/images/laravel.svg"
}
]
}
},
"scripts": {
"docs:generate": "node dist/generator/Generator.js",
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./dist/test/runTest.js",
"watch": "concurrently \"cd webview-ui && pnpm run dev\" \"tsc -watch -p ./\"",
"install:all": "pnpm install && cd webview-ui && pnpm install",
"start:webview": "cd webview-ui && pnpm run dev",
"build:webview": "cd webview-ui && pnpm run build",
"build:all": "pnpm run build:webview && pnpm run compile && pnpm run docs:generate"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "~20.8.2",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-electron": "^2.3.4",
"concurrently": "^8.2.1",
"eslint": "^8.50.0",
"glob": "^10.3.10",
"highlight.js": "^11.8.0",
"highlightjs-blade": "^0.1.0",
"marked": "^9.1.0",
"marked-highlight": "^2.0.6",
"mocha": "^10.2.0",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.0.0"
}
}