-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.82 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.82 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
{
"name": "@stellarwp/harbor",
"private": true,
"scripts": {
"build": "bun run build:dev && bun run build:prod",
"build:dev": "BUILD_MODE=dev NODE_ENV=development wp-scripts build",
"build:prod": "BUILD_MODE=prod NODE_ENV=production wp-scripts build",
"start": "BUILD_MODE=dev NODE_ENV=development wp-scripts start",
"typecheck": "tsc --noEmit",
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"check:spelling": "bunx cspell lint -c .cspell.json --no-progress --no-must-find-files --dot '**'",
"lint:md": "markdownlint '**/*.md' --ignore node_modules --ignore vendor",
"fix:md": "prettier --write '**/*.md' '!node_modules/**' '!vendor/**' && markdownlint '**/*.md' --ignore node_modules --ignore vendor --fix"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"radix-ui": "^1.4.3",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@stellarwp/changelogger": "^0.10.0",
"@tailwindcss/postcss": "^4.1.17",
"@wordpress/api-fetch": "^7.40.0",
"@wordpress/components": "^32.3.0",
"@wordpress/data": "^10.40.0",
"@wordpress/i18n": "^6.13.0",
"@wordpress/scripts": "^31.1.0",
"autoprefixer": "^10.4.22",
"cspell": "^8",
"markdownlint-cli": "^0.47",
"postcss": "^8.5.6",
"prettier": "^3.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3"
},
"changelogger": {
"changesDir": "changelog",
"linkTemplate": "https://github.com/stellarwp/harbor/compare/${old}...${new}",
"ordering": [
"type",
"content"
],
"versioning": "semver",
"files": [
{
"path": "changelog.txt",
"strategy": "stellarwp-changelog"
}
]
}
}