-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 2.01 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
{
"name": "slashed-for-wp",
"version": "0.6.9",
"type": "module",
"private": true,
"engines": {
"node": ">=20.11.0"
},
"description": "SLASHED for WordPress — Bricks Builder and Gutenberg integrations for the SLASHED cascade-layer CSS framework.",
"license": "GPL-3.0-or-later",
"author": "jackgranatowski",
"repository": {
"type": "git",
"url": "https://github.com/codeslash-dev/SLASHED-Plugins.git"
},
"scripts": {
"prepare": "git rev-parse --is-inside-work-tree >/dev/null 2>&1 && git config core.hooksPath .githooks && chmod +x .githooks/* || true",
"inventory": "node scripts/gen-bricks-inventory.js",
"class-hints": "node scripts/gen-class-hints.js",
"variables-hints": "node scripts/gen-variables-hints.js",
"update-framework": "node scripts/update-framework.js",
"build:data": "node scripts/gen-bricks-inventory.js && node scripts/gen-class-hints.js && node scripts/gen-variables-hints.js",
"sync-dist": "node scripts/sync-plugin-dist.js",
"build:editor-app": "(cd SLASHED-for-WP/integrations/bricks/editor-app && npm ci && npm run build)",
"build:admin-app": "(cd SLASHED-for-WP/admin-app && npm ci && npm run build)",
"build:apps": "npm run build:editor-app && npm run build:admin-app",
"build:zip": "node scripts/zip-plugin.js",
"build": "npm run build:data && npm run sync-dist && npm run build:apps && npm run build:zip",
"version-sync": "node scripts/version-sync.js",
"changelog": "node scripts/changelog-release.js",
"verify": "node scripts/verify-sync.js",
"check": "node scripts/check.js",
"lint:css": "stylelint \"SLASHED-for-WP/**/*.css\"",
"lint:css:fix": "stylelint \"SLASHED-for-WP/**/*.css\" --fix",
"lint:php": "node scripts/lint-php.js",
"lint": "npm run lint:css && npm run lint:php",
"test": "node --test tests/*.test.js"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0"
}
}