generated from figuren-theater/new-ft-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 3.56 KB
/
package.json
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
{
"name": "theater-production-blocks",
"version": "0.1.0",
"description": "WordPress blocks for theater productions to be used with the Site- and Block-Editor.",
"author": "Carsten Bach",
"license": "GPL-3.0-or-later",
"keywords": [
"WordPress",
"Theater",
"Gutenberg",
"Blocks"
],
"homepage": "https://websites.fuer.figuren.theater",
"repository": "git+https://github.com/figuren-theater/theater-production-blocks.git",
"bugs": {
"url": "https://github.com/figuren-theater/theater-production-blocks/issues"
},
"main": "build/index.js",
"dependencies": {
"@wordpress/icons": "^9.42.0",
"classnames": "^2.3.2",
"lodash.assign": "^4.2.0"
},
"devDependencies": {
"@wordpress/scripts": "^27.2.0",
"prettier": "^3.0.3"
},
"scripts": {
"build": "wp-scripts build --webpack-src-dir=src/block-editor/blocks --webpack-copy-php",
"format": "wp-scripts format",
"format:src": "wp-scripts format ./src",
"format:js": "wp-scripts format-js",
"i18n:pot": " wp i18n make-pot . --exclude=node_modules,vendor",
"i18n:json": "wp i18n make-json languages --pretty-print --no-purge",
"i18n:json:map": "wp i18n make-json languages --pretty-print --no-purge '--use-map={ \"src/block-editor/blocks/duration/index.js\": \"build/duration/duration.js\", \"src/block-editor/blocks/duration/slotfill.js\": \"build/duration/duration.js\", \"src/block-editor/blocks/duration/save.js\": \"build/duration/duration.js\", \"src/block-editor/blocks/duration/edit.js\": \"build/duration/duration.js\", \"src/block-editor/blocks/duration/block.json\": \"build/duration/block.json\", \"src/block-editor/blocks/premiere/index.js\": \"build/premiere/premiere.js\", \"src/block-editor/blocks/premiere/slotfill.js\": \"build/premiere/premiere.js\", \"src/block-editor/blocks/premiere/save.js\": \"build/premiere/premiere.js\", \"src/block-editor/blocks/premiere/edit.js\": \"build/premiere/premiere.js\", \"src/block-editor/blocks/premiere/block.json\": \"build/premiere/block.json\", \"src/block-editor/blocks/targetgroup/index.js\": \"build/targetgroup/targetgroup.js\", \"src/block-editor/blocks/targetgroup/slotfill.js\": \"build/targetgroup/targetgroup.js\", \"src/block-editor/blocks/targetgroup/save.js\": \"build/targetgroup/targetgroup.js\", \"src/block-editor/blocks/targetgroup/edit.js\": \"build/targetgroup/targetgroup.js\", \"src/block-editor/blocks/targetgroup/block.json\": \"build/targetgroup/block.json\", \"src/block-editor/plugins/document-setting-panel/index.js\": \"build/document-setting-panel/document-setting-panel.js\", \"src/block-editor/variations/shadow-related-query/index.js\": \"build/shadow-related-query/shadow-related-query.js\", \"src/block-editor/variations/shadow-terms/index.js\": \"build/shadow-terms/shadow-terms.js\" }'",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:js:report": "npm run lint:js -- --output-file lint-js-report.json --format json .",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:php": "vendor/bin/phpcs",
"lint:php:fix": "vendor/bin/phpcbf",
"lint:php:stan": "vendor/bin/phpstan analyze",
"lint:pkg-json": "wp-scripts lint-pkg-json --ignorePath .gitignore",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start --webpack-src-dir=src/block-editor/blocks --webpack-copy-php"
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"rules": {
"valid-values-license": [
"error",
[
"GPL-3.0-or-later"
]
]
}
}
}