-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 863 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 863 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
{
"name": "3rd-party-optimizer",
"private": true,
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "VITE_CONFIG_PATH=$(pwd)/vite.config.ts run g:dev",
"build": "VITE_CONFIG_PATH=$(pwd)/vite.config.ts run g:build",
"check-biome": "run g:check-biome",
"check-eslint": "run g:check-eslint",
"preview": "VITE_CONFIG_PATH=$(pwd)/vite.config.ts run g:preview",
"pack": "run g:pack",
"check-typescript": "run g:check-typescript"
},
"dependencies": {
"framer-plugin": "3.11.0-alpha.12",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@framer/vite-config": "workspace:*",
"@types/node": "^24.4.0",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"esbuild": "^0.25.9"
}
}