-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
60
61
62
63
64
65
66
67
68
{
"name": "roxyapi",
"version": "1.0.0",
"description": "WordPress plugin for RoxyAPI. Astrology, tarot, numerology, horoscope, I Ching, biorhythm, and more.",
"license": "GPL-2.0-or-later",
"author": {
"name": "RoxyAPI",
"url": "https://roxyapi.com"
},
"homepage": "https://roxyapi.com/docs/wordpress",
"repository": {
"type": "git",
"url": "git+https://github.com/RoxyAPI/sdk-wordpress.git"
},
"bugs": {
"url": "https://github.com/RoxyAPI/sdk-wordpress/issues"
},
"keywords": [
"wordpress",
"wordpress-plugin",
"gutenberg",
"block",
"shortcode",
"astrology",
"vedic",
"tarot",
"numerology",
"horoscope",
"iching",
"biorhythm",
"roxyapi"
],
"scripts": {
"build": "wp-scripts build --webpack-src-dir=blocks --output-path=build/blocks",
"blocks-manifest": "wp-scripts build-blocks-manifest --input=blocks --output=build/blocks-manifest.php",
"post-build": "node bin/post-build.mjs",
"build:all": "npm run build && npm run blocks-manifest && npm run post-build",
"start": "wp-scripts start --webpack-src-dir=blocks --output-path=build/blocks",
"plugin-zip": "wp-scripts plugin-zip",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:js": "wp-scripts lint-js blocks/ assets/js/ bin/",
"lint:css": "wp-scripts lint-style blocks/ assets/css/",
"wp-env": "wp-env",
"generate": "node bin/generate.mjs",
"generate:check": "node bin/generate.mjs && git diff --exit-code src/Generated blocks/generated",
"upgrade": "npx npm-check-updates --target minor --upgrade",
"check-outdated": "npx npm-check-updates"
},
"devDependencies": {
"@wordpress/env": "^11.4.0",
"@wordpress/scripts": "^32.0.0",
"@wordpress/server-side-render": "^6.20.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1"
},
"files": [
"roxyapi.php",
"uninstall.php",
"readme.txt",
"LICENSE",
"src/",
"templates/",
"build/",
"assets/",
"languages/"
]
}