Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/fixtures/multiFileEdit/asciiart/package.json
13405 views
1
{
2
"name": "test-multifile-1",
3
"displayName": "test-multifile-1",
4
"description": "",
5
"version": "0.0.1",
6
"engines": {
7
"vscode": "^1.93.0"
8
},
9
"categories": [
10
"Other"
11
],
12
"activationEvents": [],
13
"main": "./out/extension.js",
14
"contributes": {
15
"commands": [
16
{
17
"command": "test-multifile-1.helloWorld",
18
"title": "Hello World"
19
}
20
]
21
},
22
"scripts": {
23
"vscode:prepublish": "npm run compile",
24
"compile": "tsc -p ./",
25
"watch": "tsc -watch -p ./",
26
"pretest": "npm run compile && npm run lint",
27
"lint": "eslint src --ext ts",
28
"test": "vscode-test"
29
},
30
"devDependencies": {
31
"@types/vscode": "^1.93.0",
32
"@types/mocha": "^10.0.7",
33
"@types/node": "20.x",
34
"@typescript-eslint/eslint-plugin": "^7.14.1",
35
"@typescript-eslint/parser": "^7.11.0",
36
"eslint": "^8.57.0",
37
"typescript": "^5.4.5",
38
"@vscode/test-cli": "^0.0.9",
39
"@vscode/test-electron": "^2.4.0"
40
}
41
}
42
43