Skip to content

Commit

Permalink
Merge remote-tracking branch 'Parent/main' into Current
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Sep 18, 2024
2 parents eb43903 + f142712 commit 242dbf3
Show file tree
Hide file tree
Showing 10 changed files with 6,490 additions and 16 deletions.
3,213 changes: 3,213 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

50 changes: 34 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
{
"description": "The underling text buffer used in VS Code/Monaco",
"devDependencies": {
"kind-of": ">=6.0.3",
"minimist": ">=0.2.1",
"node-notifier": ">=8.0.1",
"set-value": ">=2.0.1",
"yargs-parser": ">=13.1.2"
},
"main": "lib/index.js",
"name": "@vscode/textbuffer",
"scripts": {
"build": "tsc",
"fasttest": "jest --forceExit",
"start": "npm run build && npm run watch"
},
"types": "lib/index.d.ts"
"name": "@vscode/textbuffer",
"version": "1.0.0",
"description": "The underling text buffer used in VS Code/Monaco",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "npm run build && npm run watch",
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run build",
"test": "jest --forceExit",
"fasttest": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-textbuffer.git"
},
"author": "Visual Studio Code Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-textbuffer/issues"
},
"homepage": "httpshttps://github.com/microsoft/vscode-textbuffer#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^27.0.6",
"kind-of": ">=6.0.3",
"minimist": ">=0.2.1",
"node-notifier": ">=8.0.1",
"set-value": ">=2.0.1",
"ts-jest": "^27.0.5",
"typescript": "^3.4.2",
"yargs-parser": ">=13.1.2"
}
}
Loading

0 comments on commit 242dbf3

Please sign in to comment.