Skip to content

Commit

Permalink
add some details in package json and shift to npm
Browse files Browse the repository at this point in the history
cause of microsoft/vscode-vsce#517

Signed-off-by: Shubh <shubhisroking@proton.me>
  • Loading branch information
shubhisroking committed Sep 1, 2023
1 parent b839f82 commit 98a5cfc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 886 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ node_modules
# End of https://www.toptal.com/developers/gitignore/api/yarn

yarn.lock
package-lock.json
874 changes: 0 additions & 874 deletions .yarn/releases/yarn-3.6.3.cjs

This file was deleted.

1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

3 changes: 0 additions & 3 deletions .yarnrc.yml

This file was deleted.

21 changes: 13 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"name": "vscode-streamer-mode",
"displayName": "vscode-streamer-mode",
"description": "A simple streamer mode for vscode",
"version": "0.0.1",
"displayName": "Vscode Streamer Mode",
"description": "A simple streamer mode for vscode.",
"version": "0.1.0",
"publisher": "shubhisroking",
"icon": "static/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/shubhisroking/vscode-streamer-mode"
},
"engines": {
"vscode": "^1.81.0"
},
Expand All @@ -21,14 +26,14 @@
]
},
"scripts": {
"vscode:prepublish": "yarn run esbuild-base --minify",
"vscode:prepublish": "npm run esbuild-base --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "yarn run esbuild-base -- --sourcemap",
"esbuild-watch": "yarn run esbuild-base -- --sourcemap --watch",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
Expand All @@ -45,5 +50,5 @@
"mocha": "^10.2.0",
"typescript": "^5.1.6"
},
"packageManager": "yarn@3.6.3"
"packageManager": "npm@9.8.1"
}
Binary file added static/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 98a5cfc

Please sign in to comment.