-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.28 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
{
"name": "wp-attachments",
"version": "1.0.0",
"scripts": {
"build": "wp-scripts build index.js",
"release": "npm run build; rsync -rvi --delete --prune-empty-dirs --exclude-from=.release-ignore ./ ./release/",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start index.js",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"wp-env": "wp-env",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"composer": "wp-env run cli --env-cwd=wp-content/plugins/wp-attachments composer",
"wp": "wp-env run cli --env-cwd=wp-content/plugins/wp-attachments wp",
"wp:rewrite": "wp-env run cli --env-cwd=wp-content/plugins/wp-attachments wp rewrite structure /%postname%/"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@wordpress/browserslist-config": "^6.18.0",
"@wordpress/env": "^10.18.0",
"@wordpress/scripts": "^30.12.0",
"autoprefixer": "^10.4.21",
"browserslist": "^4.24.4",
"tailwindcss": "^3.4.17"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-toast": "^1.2.6",
"@tanstack/react-query": "^5.28.4",
"@tanstack/react-query-devtools": "^5.66.8",
"@uidotdev/usehooks": "^2.4.1",
"@wordpress/postcss-plugins-preset": "^5.19.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"lucide-react": "^0.479.0",
"postcss": "^8.5.3",
"radix-ui": "^1.1.3",
"react": "^18.2.0",
"react-calendar": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.2",
"react-movable": "^3.4.1",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"wouter": "^3.3.5",
"zustand": "^5.0.3"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}