-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.56 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@e0ipso/ai-task-manager",
"version": "1.36.1",
"description": "Task management for AI coding assistants",
"main": "dist/index.js",
"bin": {
"ai-task-manager": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.ts' --ignore-pattern 'src/**/*.test.ts' --ignore-pattern 'src/**/__tests__/**'",
"lint:fix": "eslint 'src/**/*.ts' --ignore-pattern 'src/**/*.test.ts' --ignore-pattern 'src/**/__tests__/**' --fix",
"format": "prettier --write src/**/*.ts",
"commitlint": "commitlint --edit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"prepare": "husky",
"security:audit": "npm audit",
"security:audit-json": "npm audit --json",
"security:fix": "npm audit fix",
"security:fix-force": "npm audit fix --force"
},
"keywords": [
"cli",
"task-management",
"ai",
"npx",
"typescript"
],
"author": "e0ipso",
"license": "proprietary",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.14.0"
},
"files": [
"dist/",
"templates/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/e0ipso/ai-task-manager.git"
},
"bugs": {
"url": "https://github.com/e0ipso/ai-task-manager/issues"
},
"homepage": "https://github.com/e0ipso/ai-task-manager#readme",
"dependencies": {
"chalk": "^5.6.0",
"commander": "^11.1.0",
"diff": "^5.2.0",
"fs-extra": "^11.3.1",
"gray-matter": "^4.0.3",
"inquirer": "^9.3.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.34.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/diff": "^5.2.3",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"jest": "^30.1.2",
"prettier": "^3.6.2",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}