Skip to content

Commit 6be4dad

Browse files
squash!
1 parent b0f0d51 commit 6be4dad

File tree

6 files changed

+32
-289
lines changed

6 files changed

+32
-289
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/Dependabot.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/GitHub.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/workflows/NPM.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/Node.yml

Lines changed: 0 additions & 99 deletions
This file was deleted.

package.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,16 @@
11
{
2-
"name": "codetour",
3-
"displayName": "CodeTour",
4-
"version": "0.0.1",
5-
"private": false,
6-
"description": "VS Code extension that allows you to record and playback guided tours of codebases, directly within the editor",
7-
"homepage": "https://github.com/CodeEditorLand/Environment#readme",
8-
"bugs": {
9-
"url": "https://github.com/CodeEditorLand/Environment/issues"
10-
},
11-
"repository": {
12-
"type": "git",
13-
"url": "git+https://github.com/CodeEditorLand/Environment.git"
14-
},
15-
"license": "SEE LICENSE IN LICENSE",
2+
"activationEvents": [
3+
"onStartupFinished",
4+
"onNotebookEditor:codetour"
5+
],
166
"author": {
17-
"name": "Nikola Hristov",
187
"email": "nikola@nikolahristov.tech",
8+
"name": "Nikola Hristov",
199
"url": "https://nikolahristov.tech"
2010
},
21-
"publisher": "playform",
22-
"type": "module",
23-
"main": "./dist/extension-node.js",
2411
"browser": "./dist/extension-web.js",
25-
"scripts": {
26-
"build": "webpack --mode production",
27-
"package": "vsce package",
28-
"prepublishOnly": "TypeScriptESBuild 'Source/**/*.ts'",
29-
"vscode:prepublish": "npm run build",
30-
"watch": "webpack --mode development --watch"
12+
"bugs": {
13+
"url": "https://github.com/CodeEditorLand/Environment/issues"
3114
},
3215
"contributes": {
3316
"commands": [
@@ -644,10 +627,6 @@
644627
}
645628
]
646629
},
647-
"activationEvents": [
648-
"onStartupFinished",
649-
"onNotebookEditor:codetour"
650-
],
651630
"dependencies": {
652631
"@types/jexl": "2.3.4",
653632
"axios": "1.6.7",
@@ -658,6 +637,7 @@
658637
"throttle-debounce": "5.0.0",
659638
"vsls": "1.0.4753"
660639
},
640+
"description": "VS Code extension that allows you to record and playback guided tours of codebases, directly within the editor",
661641
"devDependencies": {
662642
"@types/node": "20.11.14",
663643
"@types/throttle-debounce": "5.0.2",
@@ -671,11 +651,31 @@
671651
"webpack-cli": "5.1.4",
672652
"webpack-merge": "5.10.0"
673653
},
654+
"displayName": "CodeTour",
655+
"extensionKind": [
656+
"workspace"
657+
],
658+
"homepage": "https://github.com/CodeEditorLand/Environment#readme",
659+
"icon": "images/icon.png",
660+
"license": "SEE LICENSE IN LICENSE",
661+
"main": "./dist/extension-node.js",
662+
"name": "codetour",
663+
"private": false,
674664
"publishConfig": {
675665
"access": "public"
676666
},
677-
"icon": "images/icon.png",
678-
"extensionKind": [
679-
"workspace"
680-
]
667+
"publisher": "playform",
668+
"repository": {
669+
"type": "git",
670+
"url": "git+https://github.com/CodeEditorLand/Environment.git"
671+
},
672+
"scripts": {
673+
"build": "webpack --mode production",
674+
"package": "vsce package",
675+
"prepublishOnly": "TypeScriptESBuild 'Source/**/*.ts'",
676+
"vscode:prepublish": "npm run build",
677+
"watch": "webpack --mode development --watch"
678+
},
679+
"type": "module",
680+
"version": "0.0.1"
681681
}

0 commit comments

Comments
 (0)