-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "@stellarwp/tyson",
"version": "0.0.1",
"description": "Create and manage custom configurations to build projects with @wordpress/scripts.",
"main": "dist/index.js",
"bin": {
"tyson": "./bin/tyson"
},
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'"
},
"keywords": [
"stellarwp",
"wordpress",
"plugin",
"build",
"wp-scripts"
],
"author": {
"name": "StellarWP Team",
"email": "[email protected]",
"url": "https://www.stellarwp.com"
},
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/stellarwp/tyson.git"
},
"bugs": {
"url": "https://github.com/stellarwp/tyson/issues"
},
"homepage": "https://github.com/stellarwp/tyson",
"dependencies": {
"@types/webpack": "^5.28.5",
"@wordpress/scripts": "^30.7.0"
},
"devDependencies": {
"jest": "^29.6.4",
"prettier": "^3.4.2",
"yargs": "^17.7.2"
}
}