-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.81 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "egghead",
"type": "module",
"version": "2.2.0",
"author": "cfeenstra67 <cameron.l.feenstra@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"check-types": "tsc --noEmit",
"prebuild": "npm run clean && npm run check-types",
"build": "webpack --config-name chrome && webpack --config-name firefox && webpack --config-name firefox-mv2 && webpack --config-name demo && zip -rj dist/chrome.zip dist/chrome && zip -rj dist/firefox.zip dist/firefox && zip -rj dist/firefox-mv2.zip dist/firefox-mv2",
"serve": "webpack serve --config-name dev --no-client-overlay",
"serve-demo": "webpack serve --config-name demo --no-client-overlay",
"ohm-generate": "ohm generateBundles --esm --withTypes src/**/*.ohm",
"check": "pnpm biome check *.{js,ts} src test infra --write",
"test": "vitest --run"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@sqlite.org/sqlite-wasm": "3.50.1-build1",
"@tanstack/react-query": "^5.66.0",
"@ungap/event-target": "^0.2.3",
"animate.css": "^4.1.1",
"chart.js": "^3.7.1",
"css-loader": "^6.7.1",
"framer-motion": "^12.0.11",
"highlight.js": "^11.5.1",
"kysely": "^0.27.5",
"pino": "^8.4.1",
"queue": "^6.0.2",
"react": "^18.1.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "^18.1.0",
"react-intersection-observer": "^9.1.0",
"react-simple-code-editor": "^0.11.2",
"react-transition-group": "^4.4.2",
"recharts": "^2.15.1",
"reflect-metadata": "^0.1.13",
"style-loader": "^3.3.1",
"uuid": "^8.3.2",
"wouter": "^2.8.0-alpha.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@ohm-js/cli": "^1.1.0",
"@pulumi/aws": "^6.68.0",
"@pulumi/pulumi": "^3.149.0",
"@stackattack/aws": "0.1.0-dev.48",
"@svgr/webpack": "^6.2.1",
"@types/chrome": "^0.0.300",
"@types/lodash": "^4.14.182",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.0.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-transition-group": "^4.4.4",
"@types/uuid": "^8.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-webpack-plugin": "^10.2.4",
"events": "^3.3.0",
"globals": "^15.14.0",
"http-server": "^14.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.474.0",
"merge-jsons-webpack-plugin": "^2.0.1",
"mime-types": "^2.1.35",
"mini-css-extract-plugin": "^2.6.0",
"ohm-js": "^16.3.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^2.6.2",
"sphinx-material": "git+https://github.com/bashtage/sphinx-material.git",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.7.3",
"url-loader": "^4.1.1",
"vitest": "^3.2.4",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"pnpm": {
"patchedDependencies": {
"lodash@4.17.21": "patches/lodash@4.17.21.patch"
},
"overrides": {
"loader-utils": ">=2.0.3",
"@babel/traverse": ">=7.23.2",
"postcss": ">=8.4.31",
"json5": ">=2.2.2",
"xml2js": ">=0.5.0"
}
}
}