-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 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
59
60
61
{
"name": "pterospeed",
"version": "0.3.2",
"description": "CLI to analyze and optimize Pterodactyl panel build performance.",
"license": "MIT",
"author": "Molret",
"repository": {
"type": "git",
"url": "https://github.com/Molret/pterospeed.git"
},
"homepage": "https://github.com/Molret/pterospeed#readme",
"bugs": {
"url": "https://github.com/Molret/pterospeed/issues"
},
"bin": {
"pterospeed": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"pterodactyl",
"pelican",
"webpack",
"build",
"performance",
"optimizer",
"cli",
"esbuild",
"laravel"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@babel/parser": "^7.28.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"diff": "^8.0.2",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"ora": "^9.3.0",
"recast": "^0.23.11"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.21",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}