forked from WordPress/create-block-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 925 Bytes
/
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
{
"name": "create-block-theme",
"version": "1.3.8",
"private": true,
"description": "Create a block-based theme",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"block"
],
"homepage": "https://wordpress.org/plugins/create-block-theme/",
"repository": "git+https://github.com/WordPress/create-block-theme.git",
"bugs": {
"url": "https://wordpress.org/support/plugin/create-block-theme/"
},
"main": "build/index.js",
"devDependencies": {
"@wordpress/scripts": "^18.0.1",
"@actions/core": "^1.10.0",
"semver": "^7.3.8",
"simple-git": "^3.14.1"
},
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start",
"update-version": "node update-version-and-changelog.js"
}
}