-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.17 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.17 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "devxp-cli",
"version": "1.0.0",
"description": "🚀 Gamify your development experience - Track coding progress, earn achievements, and level up!",
"main": "dist/index.js",
"type": "commonjs",
"bin": {
"devxp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"postbuild": "chmod +x dist/index.js",
"prepublishOnly": "npm run test:ci && npm run build",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"test": "jest",
"test:unit": "jest --testPathPattern='^((?!integration|e2e).)*\\.test\\.ts$'",
"test:integration": "jest --testPathPattern='\\.integration\\.test\\.ts$'",
"test:e2e": "playwright test",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"prepare-publish": "node scripts/prepare-publish.js",
"release": "npm run prepare-publish && npm version patch && npm publish",
"release:minor": "npm run prepare-publish && npm version minor && npm publish",
"release:major": "npm run prepare-publish && npm version major && npm publish"
},
"keywords": [
"cli",
"devxp",
"developer-experience",
"gamification",
"achievements",
"xp-system",
"productivity",
"developer-tools",
"terminal",
"typescript",
"git-hooks",
"coding-tracker",
"leaderboard",
"statistics"
],
"author": {
"name": "DevXP CLI Contributors",
"email": "devxp-cli@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/devxp-cli.git"
},
"homepage": "https://github.com/yourusername/devxp-cli#readme",
"bugs": {
"url": "https://github.com/yourusername/devxp-cli/issues"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.54.2",
"@types/better-sqlite3": "^7.6.13",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.0",
"@types/terminal-kit": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.32.0",
"execa": "^9.6.0",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"dependencies": {
"@tweenjs/tween.js": "^25.0.0",
"better-sqlite3": "^12.2.0",
"boxen": "^8.0.1",
"chalk": "^5.5.0",
"commander": "^14.0.0",
"conf": "^14.0.0",
"figlet": "^1.8.2",
"gradient-string": "^3.0.0",
"ora": "^8.2.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"terminal-kit": "^3.1.2",
"tinyexec": "^1.0.1",
"tslib": "^2.8.1",
"zod": "^4.0.15"
}
}