-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "create-src",
"version": "1.0.18",
"description": "A simple CLI tool to create a project with a advanced structure.",
"scripts": {
"test": "bun test",
"prepare": "husky",
"dev": "tsc --watch",
"build": "npm run lint && tsc",
"start": "tsx --watch ./src/bin.ts",
"tc": "tsc --noEmit --watch",
"lint": "tsc --noEmit && eslint .",
"lint:format": "prettier . --write",
"lint:fix": "eslint . --fix"
},
"bin": "./dist/bin.js",
"license": "MIT",
"keywords": [],
"type": "commonjs",
"homepage": "https://github.com/NazmusSayad/create-src#readme",
"bugs": {
"url": "https://github.com/NazmusSayad/create-src/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NazmusSayad/create-src.git"
},
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"cross-spawn": "^7.0.6",
"jszip": "^3.10.1",
"kleur": "^4.1.5",
"noarg": "^3.1.9"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/cross-spawn": "^6.0.6",
"@types/jszip": "^3.4.1",
"@types/node": "^24.10.13",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}