-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "iar-vsc-common",
"version": "1.0.0",
"description": "Common code for both IAR VS Code extensions",
"exports": {
"./*": "./dist/*.js",
"./testutils/*": "./dist/testutils/*.js",
"./thrift/*": "./dist/thrift/*.js",
"./thrift/bindings/*": "./dist/thrift/bindings/*.js"
},
"files": [
"dist",
"src",
"tsconfig.json"
],
"typesVersions": {
"*": {
"thrift/bindings/*": [
"dist/thrift/bindings/*.d.ts"
],
"thrift/*": [
"dist/thrift/*.d.ts"
],
"testutils/*": [
"dist/testutils/*.d.ts"
],
"*": [
"dist/*.d.ts"
]
}
},
"scripts": {
"postinstall": "tsc -p . && cp -r \"src/thrift/bindings\" dist/thrift/",
"lint": "eslint .",
"watch": "tsc -p . --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://gitlab.iar.se/ide/vscode/iar-vsc-common"
},
"author": "iarsystems",
"license": "MPL-2.0",
"devDependencies": {
"@eslint/js": "^10.0.0",
"eslint": "^10.0.0",
"globals": "^15.0.0",
"husky": "^8.0.1",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^18.0.0",
"@types/thrift": "^0.10.9",
"@types/uuid": "^8.3.1",
"@types/vscode": "^1.33.0",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.4.1",
"bufferutil": "^4.0.6",
"java-properties": "^1.0.2",
"mocha": "^11.0.1",
"mocha-junit-reporter": "^2.0.2",
"thrift": "^0.12.0",
"typescript": "^5.8.3",
"utf-8-validate": "^5.0.9",
"uuid": "^8.3.2"
},
"overrides": {
"serialize-javascript": "7.0.3"
}
}