-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 930 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 930 Bytes
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
{
"name": "quarto-preview",
"type": "module",
"version": "0.0.1",
"files": [
"dist"
],
"main": "./dist/quarto-preview.js",
"exports": {
".": {
"require": "./dist/quarto-preview.js"
}
},
"private": true,
"license": "mit",
"scripts": {
"build": "tsc --noEmit && vite build",
"dev": "tsc --noEmit && vite build --mode=development"
},
"dependencies": {
"@fluentui/react-icons": "^2.0.320",
"@fluentui/react-components": "~9.48.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ansi-output": "^0.0.9"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"has": "^1.0.3",
"esbuild": "^0.15.9",
"postcss": "^8.4.18",
"resolve": "^1.22.1",
"rollup": "^2.79.1",
"typescript": "^4.5.2",
"vite": "^3.0.0",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-static-copy": "^0.13.0"
}
}