-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "burokku",
"version": "1.0.0",
"description": "A modern WordPress Block Theme inspired by shadcn/ui design system",
"author": "guido scialfa <dev@guidoscialfa.com>",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"block-theme",
"shadcn-ui",
"accessibility",
"design-system"
],
"repository": {
"type": "git",
"url": "https://github.com/Spaghetti-Dojo/burokku.git"
},
"bugs": {
"url": "https://github.com/Spaghetti-Dojo/burokku/issues"
},
"homepage": "https://github.com/Spaghetti-Dojo/burokku#readme",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"dependencies": {
"@wordpress/block-editor": "^15.12.0",
"@wordpress/blocks": "^15.12.0",
"@wordpress/components": "^32.1.0",
"@wordpress/i18n": "^6.12.0",
"aos": "^2.3.4"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/webpack": "^5.28.5",
"@wordpress/env": "^10.39.0",
"@wordpress/prettier-config": "^4.39.0",
"@wordpress/scripts": "^31.4.0",
"clean-webpack-plugin": "^4.0.0",
"sass": "^1.83.0",
"stylelint-plugin-logical-css": "^2.0.2",
"ts-node": "^10.9.2",
"typescript": "~5.9.0"
},
"scripts": {
"env": "wp-env",
"start": "wp-scripts start",
"build": "wp-scripts build",
"build:dev": "wp-scripts start",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"format": "wp-scripts format"
}
}