forked from sukumo28/vscode-audio-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.75 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "wav-preview",
"displayName": "audio-preview",
"description": "play & preview audio file in VS Code. (wav,mp3,ogg,aac,flac,...etc)",
"version": "2.0.3",
"engines": {
"vscode": "^1.59.1"
},
"publisher": "sukumo28",
"categories": [
"Other"
],
"keywords": [
"audio",
"sound",
"wav",
"mp3",
"aac",
"flac"
],
"icon": "audio-preview.png",
"repository": {
"type": "git",
"url": "https://github.com/sukumo28/vscode-audio-preview.git"
},
"bugs": {
"url": "https://github.com/sukumo28/vscode-audio-preview.git"
},
"activationEvents": [
"onCustomEditor:wavPreview.audioPreview"
],
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "wavPreview.audioPreview",
"displayName": "Audio Preview",
"selector": [
{
"filenamePattern": "*.wav"
},
{
"filenamePattern": "*.mp3"
},
{
"filenamePattern": "*.aac"
},
{
"filenamePattern": "*.ogg"
},
{
"filenamePattern": "*.opus"
},
{
"filenamePattern": "*.flac"
}
],
"priority": "default"
}
],
"configuration": {
"title": "WavPreview",
"properties": {
"WavPreview.autoPlay": {
"type": "boolean",
"default": false,
"description": "automatically play audio file when you open it"
},
"WavPreview.autoAnalyze": {
"type": "boolean",
"default": false,
"description": "automatically analyze audio file when you open it"
},
"WavPreview.analyzeDefault": {
"type": "object",
"default": {},
"description": "default values of analyze settings"
}
}
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "This ext does not play audio files in untrusted workspaces."
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production --devtool hidden-source-map",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"test": "npm run test-compile && jest"
},
"jest": {
"automock": false,
"rootDir": "out",
"testEnvironment": "jsdom",
"setupFiles": ["jest-canvas-mock"]
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.11.7",
"@types/ooura": "^2.1.0",
"@types/vscode": "^1.59.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"copy-webpack-plugin": "^10.2.1",
"eslint": "^8.2.0",
"jest": "^27.5.1",
"jest-canvas-mock": "^2.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"assert": "^2.0.0",
"ooura": "^2.1.6",
"path-browserify": "^1.0.1",
"process": "^0.11.10"
}
}