-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 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
{
"name": "@stellarwp/pup",
"version": "2.0.0",
"description": "StellarWP's Project Utilities & Packager",
"bin": {
"pup": "./dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=24"
},
"files": [
"dist/",
"defaults/",
"docs/",
"action.yml"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "TS_NODE_PROJECT=tsconfig.test.json jest --passWithNoTests",
"lint": "eslint --no-error-on-unmatched-pattern src/ tests/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"stellarwp",
"wordpress",
"build",
"packager",
"cli"
],
"author": "StellarWP <dev@stellarwp.com>",
"license": "MIT",
"dependencies": {
"archiver": "^7.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"picomatch": "^4.0.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@jest/types": "^30.2.0",
"@types/archiver": "^6.0.0",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@types/picomatch": "^3.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0"
}
}