-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"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": "https://github.com/microsoft/vscode-textbuffer#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.0.0",
"jest": "^30.3.0",
"kind-of": ">=6.0.3",
"minimist": ">=0.2.1",
"node-notifier": ">=8.0.1",
"set-value": ">=2.0.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"yargs-parser": ">=13.1.2"
}
}