-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.91 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.91 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "pure-cinema",
"displayName": "Pure Cinema",
"description": "Record terminal sessions locally within Visual Studio Code. No data transmission - completely private.",
"version": "1.0.0",
"publisher": "pure-cinema",
"author": {
"name": "Pure Cinema"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grzetich/pure-cinema.git"
},
"homepage": "https://github.com/grzetich/pure-cinema#readme",
"bugs": {
"url": "https://github.com/grzetich/pure-cinema/issues"
},
"keywords": [
"terminal",
"recording",
"asciinema",
"screencast",
"demo",
"documentation"
],
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onCommand:pure-cinema.startRecording",
"onCommand:pure-cinema.stopRecording",
"onCommand:pure-cinema.playRecording",
"onCommand:pure-cinema.editRecording",
"onCommand:pure-cinema.exportRecording",
"onCommand:pure-cinema.shareToGist"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pure-cinema.startRecording",
"title": "Start Recording",
"category": "Pure Cinema"
},
{
"command": "pure-cinema.stopRecording",
"title": "Stop Recording",
"category": "Pure Cinema"
},
{
"command": "pure-cinema.playRecording",
"title": "Play Recording",
"category": "Pure Cinema"
},
{
"command": "pure-cinema.editRecording",
"title": "Edit Recording",
"category": "Pure Cinema"
},
{
"command": "pure-cinema.exportRecording",
"title": "Export & Share Recording",
"category": "Pure Cinema"
},
{
"command": "pure-cinema.shareToGist",
"title": "Share Recording to GitHub Gist",
"category": "Pure Cinema"
}
],
"menus": {
"terminal/context": [
{
"command": "pure-cinema.startRecording",
"group": "pure-cinema"
},
{
"command": "pure-cinema.stopRecording",
"group": "pure-cinema",
"when": "pure-cinema.recording"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"test:platform": "node test-platform.js",
"package": "npx vsce package"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"typescript": "^4.9.4",
"@vscode/test-electron": "^2.2.0",
"@types/mocha": "^10.0.1",
"@types/glob": "^8.0.0",
"mocha": "^10.1.0",
"glob": "^8.0.3"
}
}