-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.33 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
{
"name": "vspr",
"displayName": "VSPR",
"description": "Unleash the power of AI to document your PRs",
"version": "0.0.1",
"engines": {
"vscode": "^1.85.1"
},
"categories": [
"Other",
"Education",
"Testing",
"Extension Packs"
],
"icon": "media/logo.png",
"publisher": "Samyak",
"activationEvents": [
"onView:vspr-sidebar"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "vspr-sidebar-view",
"title": "VSPR",
"icon": "media/logo.svg"
}
]
},
"views": {
"vspr-sidebar-view": [
{
"type": "webview",
"id": "vspr-sidebar",
"name": "VSPR",
"icon": "media/logo.svg",
"contextualTitle": "VSPR"
}
]
},
"commands": [
{
"command": "vspr.DocPR",
"category": "VSPR",
"title": "DocPR"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "rollup -c && webpack --mode production",
"watch": "concurrently \"rollup -c -w\" \"webpack --mode development --watch\"",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/svelte": "^5.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"install": "^0.13.0",
"npm": "^10.2.5",
"rollup": "^4.9.1",
"rollup-plugin-svelte": "^6.0.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"svelte-preprocess": "^5.1.3",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1"
}
}