-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@avixiii/bundle-size-tracker",
"version": "0.1.4",
"description": "A powerful tool to track and optimize your JavaScript bundle sizes with AI-powered suggestions",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"bundle-size-tracker": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"lint": "eslint \"src/**/*.{js,ts}\" --fix",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"bundle",
"size",
"tracker",
"webpack",
"optimization",
"ai",
"analysis",
"performance"
],
"author": "Tuan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/avixiii-dev/bundle-size-tracker.git"
},
"bugs": {
"url": "https://github.com/avixiii-dev/bundle-size-tracker/issues"
},
"homepage": "https://github.com/avixiii-dev/bundle-size-tracker#readme",
"dependencies": {
"@types/glob": "^8.0.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"filesize": "^10.0.0",
"glob": "^10.0.0",
"openai": "^4.24.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.12",
"@types/rollup": "^0.54.0",
"@types/web": "^0.0.193",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rollup": "^3.29.4",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3",
"vite": "^4.5.1"
},
"peerDependencies": {
"rollup": "^3.0.0",
"vite": "^4.0.0",
"webpack": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}