-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "project-launchkit",
"version": "1.0.4",
"description": "A unified CLI tool for creating projects with various frameworks and templates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"launchkit": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"depcheck": "depcheck --ignores=\"@types/jest,ts-jest,jest\"",
"prepare": "npm run build"
},
"keywords": [
"cli",
"project-generator",
"expo",
"next",
"electron",
"vite",
"react-router",
"express",
"nestjs",
"angular",
"svelte",
"blitz"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thejacedev/LaunchKit-CLI.git"
},
"bugs": {
"url": "https://github.com/thejacedev/LaunchKit-CLI/issues"
},
"homepage": "https://github.com/thejacedev/LaunchKit-CLI#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"depcheck": "^1.4.7",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"chalk": "^5.4.1",
"inquirer": "^12.5.0"
}
}