-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"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}' 'tests/**/*.{ts,tsx}' package.json jest.config.js tsconfig.json",
"format:check": "prettier --check 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}' package.json jest.config.js tsconfig.json",
"test": "jest",
"prepare": "npm run format && npm run build && npm run test"
},
"keywords": [
"stellarwp",
"wordpress",
"plugin",
"build",
"wp-scripts"
],
"author": {
"name": "StellarWP Team",
"email": "info@stellarwp.com",
"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"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.6.4",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"yargs": "^17.7.2"
}
}