-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.73 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "odyssey-fp",
"displayName": "Odyssey",
"description": "An interactive workbench for the Herbie floating-point tool https://github.com/herbie-fp/herbie",
"icon": "images/odyssey-icon.png",
"version": "1.1.3",
"repository": "https://github.com/herbie-fp/herbie-vscode",
"publisher": "herbie-fp",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.bundle.js",
"contributes": {
"commands": [
{
"command": "odyssey-fp.openTab",
"title": "Odyssey: Herbie"
}
]
},
"scripts": {
"publish": "vsce publish",
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"start": "node server.js",
"setup-tests": "node_modules/.bin/extest setup-tests",
"run-tests": "node_modules/.bin/extest run-tests"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/d3-brush": "^3.0.6",
"@types/d3-selection": "^3.0.10",
"@types/glob": "^8.1.0",
"@types/katex": "^0.16.0",
"@types/mathjs": "^9.4.2",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-modal": "^3.16.0",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.0",
"css-loader": "^6.8.1",
"eslint": "^8.39.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"vscode-extension-tester": "^8.8.0",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@observablehq/plot": "^0.6.9",
"@vscode/test-web": "^0.0.62",
"@vscode/webview-ui-toolkit": "^1.2.2",
"adm-zip": "^0.5.10",
"chai": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"katex": "^0.16.7",
"lnk": "^1.1.0",
"mathjs1": "npm:mathjs@^1.6.0",
"mathjs11": "npm:mathjs@^11.8.1",
"mermaid": "^10.1.0",
"puppeteer": "^23.6.0",
"react": "^18.2.0",
"react-debounce-input": "^3.3.0",
"react-dom": "^18.2.0",
"react-latex-next": "^2.2.0",
"react-modal": "^3.16.1",
"react-split": "^2.0.14",
"react-split-grid": "^1.0.4",
"react-tooltip": "^5.18.1",
"serve-index": "^1.9.1",
"simplebar-react": "^3.2.4",
"util": "^0.12.5"
}
}