-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.6 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
{
"name": "setuply",
"version": "0.3.0",
"description": "Setup instantly linting and formatting with OXC, plus Husky and lint-staged in one command.",
"keywords": [
"format",
"husky",
"lint",
"precommit hook",
"staged"
],
"homepage": "https://zougari47.github.io/setuply/",
"bugs": {
"url": "https://github.com/zougari47/setuply/issues"
},
"license": "MIT",
"author": "Ahmed Zougari<zougarii.ahmed@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/zougari47/setuply.git"
},
"bin": {
"setuply": "./dist/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"start": "node dist/index.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"package-manager-detector": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@types/node": "^25.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"lint-staged": {
"*.{js,ts}": [
"oxfmt",
"oxlint --fix"
],
"*.{css,md,json}": [
"oxfmt"
]
},
"packageManager": "pnpm@10.27.0"
}