-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.6 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.6 KB
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
{
"name": "loopify",
"displayName": "Loopify",
"description": "remixing music while coding",
"version": "0.0.3",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Other"
],
"icon": "assets/logo.png",
"activationEvents": [
"onCommand:loopify.sayhello",
"onView:loopify-sidebar",
"onCommand:loopify.askquestion"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "loopify.sayhello",
"category": "Loopify",
"title": "Say hello"
},
{
"command": "loopify.askquestion",
"category": "Loopify",
"title": "Ask question"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "loopify-sidebar-view",
"title": "Loopify",
"icon": "assets/icon.svg"
}
]
},
"views": {
"loopify-sidebar-view": [
{
"type": "webview",
"id": "loopify-sidebar",
"name": "Loopify",
"icon": "assets/icon.svg",
"contextualTitle": "Music Encoded"
}
]
}
},
"publisher": "Supreeth",
"repository": {
"type": "git",
"url": "https://github.com/ShinichiShi/loopify.git"
},
"scripts": {
"install:all": "npm install && npm --prefix ./webview-ui install ./webview-ui",
"start:ui": "pnpm --prefix ./webview-ui run start",
"build:ui": "pnpm --prefix ./webview-ui run build",
"watch:ui": "pnpm --prefix ./webview-ui run watch",
"vscode:prepublish": "npm run compile && webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -p ./",
"watch:extension": "tsc -watch -p ./",
"watch:all": "concurrently \"pnpm watch:ui\" \"pnpm watch:extension\"",
"watch": "pnpm watch:extension",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^12.11.7",
"@types/vscode": "^1.46.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"concurrently": "^7.3.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"prettier": "^2.2.1",
"standard": "^17.1.2",
"tape": "^5.9.0",
"time-require": "^0.1.2",
"ts-import": "^4.0.0-beta.6",
"ts-loader": "^9.5.1",
"tsd": "^0.31.2",
"typescript": "^4.1.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"xo": "^0.60.0"
},
"dependencies": {
"@vscode/test-electron": "^2.4.1"
},
"pnpm": {
"patchedDependencies": {}
}
}