-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vscode-tracy",
"displayName": "Tracy",
"version": "0.0.18",
"publisher": "TNO",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TNO/vscode-tracy"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCustomEditor:tno.tracy"
],
"main": "./out/extension/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "tno.tracy",
"displayName": "Tracy",
"selector": [
{
"filenamePattern": "*.tracy.json"
}
]
}
]
},
"scripts": {
"package": "vsce package",
"vscode:prepublish": "npm run compile-extension && npm run compile-viewer -- --mode=production --env production",
"compile": "npm run compile-extension && npm run compile-viewer -- --mode=development --env development",
"compile-extension": "tsc -p ./",
"compile-viewer": "webpack",
"watch-viewer": "webpack --mode=development --env development --progress --watch"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vscode/codicons": "^0.0.32",
"@vscode/vsce": "^2.18.0",
"@vscode/webview-ui-toolkit": "^1.2.1",
"css-loader": "^6.7.3",
"d3-array": "^3.2.2",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.14.0",
"framer-motion": "^10.15.1",
"lodash": "^4.17.21",
"react-fast-compare": "^3.2.2",
"react-resize-detector": "^8.0.4"
}
}