-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "quarto-vscode-editor",
"type": "module",
"version": "0.0.1",
"files": [
"dist"
],
"main": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.js"
}
},
"private": true,
"license": "agpl-3.0",
"scripts": {
"build": "tsc --noEmit && vite build",
"dev": "tsc --noEmit && vite build --mode=development",
"lint": "TIMING=1 eslint \"src/**/*.ts\""
},
"dependencies": {
"@fluentui/react-components": "^9.21.0",
"core": "*",
"core-browser": "*",
"editor": "*",
"editor-codemirror": "*",
"editor-types": "*",
"editor-ui": "*",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.7",
"@types/vscode-webview": "^1.57.0",
"eslint": "^7.32.0",
"eslint-config-custom": "*",
"tsconfig": "*",
"typescript": "^4.5.2",
"vite": "^3.0.0",
"vite-plugin-static-copy": "^0.13.0",
"vite-plugin-top-level-await": "^1.6.0",
"vite-plugin-wasm": "^3.5.0"
}
}