-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "orca-tabs-plugin",
"version": "2.9.4",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/",
"icon.png",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "cross-env NODE_ENV=production tsc && vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"postbuild": "echo 'Build completed successfully!'",
"version": "npm run build && git add dist/",
"release": "node scripts/release.js",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"package": "node scripts/package.js"
},
"peerDependencies": {
"react": "^18.2.0",
"valtio": "^1.13.2"
},
"devDependencies": {
"@types/date-fns": "^2.5.3",
"@types/node": "^24.6.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.5.0",
"cross-env": "^7.0.3",
"rimraf": "^5.0.5",
"rollup-plugin-external-globals": "^0.9.2",
"typescript": "^5.2.2",
"vite": "^5.2.0"
},
"dependencies": {
"date-fns": "^4.1.0"
}
}