-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "wp-tool",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"bin": {
"wp-tool": "dist/bin/app.js"
},
"scripts": {
"build": "bun build ./src/bin/app.ts --compile --minify --outfile wp-tool",
"test": "bun run test:unit & bun run test:e2e",
"test:unit": "vitest --project unit",
"test:unit:coverage": "vitest run --project unit --coverage",
"test:e2e": "vitest --project e2e",
"test:e2e:coverage": "vitest run --project e2e --coverage",
"test:list": "vitest list"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.386.0",
"app-root-path": "^3.1.0",
"archiver": "^5.3.1",
"axios": "^1.7.9",
"commander": "^11.0.0",
"crypto-random-string": "^5.0.0",
"date-fns": "^2.30.0",
"execa": "^9.5.2",
"extract-zip": "^2.0.1",
"ini": "^5.0.0",
"inquirer": "^9.2.10",
"ms": "^2.1.3",
"mysql2": "^3.12.0",
"php-parser": "^3.2.2",
"psl": "^1.9.0",
"rimraf": "^5.0.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/archiver": "^5.3.2",
"@types/ini": "^4.1.1",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.5.1",
"@types/psl": "^1.1.0",
"@types/shelljs": "^0.8.12",
"@types/tmp": "^0.2.3",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "^5.7.3",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
}
}