forked from microsoft/vscode-textbuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"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": "^29.5.14",
"jest": "^30.0.0",
"kind-of": ">=6.0.3",
"minimist": ">=1.2.8",
"node-notifier": ">=10.0.1",
"set-value": ">=4.1.0",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"yargs-parser": ">=22.0.0"
}
}