-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
{
"name": "ai-editor-toolkit",
"version": "1.0.0",
"description": "Automated monitoring, cleanup, and optimization toolkit for AI editors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ai-toolkit": "./dist/cli-simple.js",
"ait": "./dist/cli-simple.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"clean": "rimraf dist",
"prepare": "npm run build"
},
"keywords": [
"ai-editor",
"process-management",
"memory-optimization",
"port-management",
"vs-code",
"cursor",
"cleanup"
],
"author": "AI Editor Toolkit",
"license": "MIT",
"dependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^20.8.0",
"@types/node-cron": "^3.0.8",
"@types/ps-list": "^7.2.0",
"@types/tcp-port-used": "^1.0.3",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"find-free-port": "^2.0.0",
"find-process": "^1.4.7",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"node-cron": "^3.0.3",
"ora": "^5.4.1",
"pidusage": "^3.0.2",
"ps-list": "^8.1.1",
"systeminformation": "^5.21.22",
"tcp-port-used": "^1.0.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"rimraf": "^5.0.5"
},
"engines": {
"node": ">=16.0.0"
}
}