-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.65 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
{
"name": "brmbh",
"version": "0.1.0",
"description": "Agentic WordPress starter theme \u2014 Bootstrap 5 + Gutenberg + ACF block factory with agent-agnostic skills.",
"license": "GPL-2.0-or-later",
"author": "Jan Brombach",
"homepage": "https://github.com/brmbh/wordpress",
"repository": {
"type": "git",
"url": "https://github.com/brmbh/wordpress.git"
},
"private": false,
"scripts": {
"postinstall": "brmbh add skills || true",
"build:js": "webpack --config webpack.config.js",
"build:css": "node_modules/@brmbh/cli/tools/sass-with-theme-flags.sh assets/src/scss/style.scss assets/dist/css/style.css --style=compressed --source-map && node_modules/@brmbh/cli/tools/sass-with-theme-flags.sh assets/src/scss/custom-bootstrap.scss assets/dist/css/custom-bootstrap.css --style=compressed --source-map",
"build": "npm run build:js && npm run build:css",
"watch:css": "node_modules/@brmbh/cli/tools/sass-with-theme-flags.sh assets/src/scss/style.scss:assets/dist/css/style.css assets/src/scss/custom-bootstrap.scss:assets/dist/css/custom-bootstrap.css --watch --poll --style=compressed --source-map",
"watch:js": "webpack --config webpack.config.js --watch",
"watch": "concurrently -n scss,js -c cyan,magenta \"npm run watch:css\" \"npm run watch:js\""
},
"devDependencies": {
"@brmbh/cli": "^1.0.0",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"concurrently": "^9.2.1",
"sass": "^1.69.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"bootstrap": "^5.3.0",
"gsap": "^3.14.2"
},
"workspaces": [
"packages/*"
]
}