-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
{
"name": "@aditosoftware/vscode-input",
"version": "2.0.1",
"license": "MIT",
"description": "Input components for any vscode extension",
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"files": [
"out/src"
],
"repository": {
"type": "git",
"url": "https://github.com/aditosoftware/vscode-input.git"
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc --watch -p ./",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run compile",
"test": "vscode-test",
"coverage": "npm run test -- --coverage --coverage-output ./coverage --coverage-reporter html --coverage-reporter text"
},
"devDependencies": {
"@aditosoftware/eslint-config-adito-platform": "latest",
"@types/chai": "^4.3.19",
"@types/chai-fs": "^2.0.5",
"@types/chai-string": "^1.4.5",
"@types/mocha": "^10.0.8",
"@types/node": "^22.x",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.84.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"chai": "^4.5.0",
"chai-fs": "^2.0.0",
"chai-string": "^1.5.0",
"sinon": "^19.0.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@aditosoftware/vscode-logging": "1.x.x"
},
"dependencies": {
"@js-sdsl/link-list": "^4.4.2"
}
}