@luxkit/cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +323 -0
- package/dist/index.js +2011 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@luxkit/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "One-click project formatting & VSCode config CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"lux": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"dev": "tsup --watch",
|
|
18
|
+
"lint": "eslint .",
|
|
19
|
+
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix",
|
|
20
|
+
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
|
|
21
|
+
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
|
|
22
|
+
"cspell": "cspell --gitignore \"src/**/*\"",
|
|
23
|
+
"type:check": "tsc --noEmit",
|
|
24
|
+
"code:check": "bun run lint && bun run format:check",
|
|
25
|
+
"code:fix": "bun run lint:fix && bun run format",
|
|
26
|
+
"code:check:all": "bun run lint && bun run format:check && bun run cspell",
|
|
27
|
+
"code:fix:all": "bun run lint:fix && bun run format",
|
|
28
|
+
"prepublishOnly": "cross-env NODE_ENV=production bun run build",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"test:watch": "vitest",
|
|
31
|
+
"test:coverage": "vitest run --coverage",
|
|
32
|
+
"bump:deps": "bunx tsx scripts/bump-deps.ts"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [],
|
|
35
|
+
"author": "",
|
|
36
|
+
"license": "ISC",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"chalk": "5",
|
|
39
|
+
"commander": "^14.0.3"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@eslint/js": "10.0.1",
|
|
43
|
+
"@types/node": "^25.5.2",
|
|
44
|
+
"@vitest/coverage-v8": "^4.1.3",
|
|
45
|
+
"cross-env": "^10.1.0",
|
|
46
|
+
"cspell": "10.0.0",
|
|
47
|
+
"eslint": "10.2.0",
|
|
48
|
+
"eslint-config-prettier": "10.1.8",
|
|
49
|
+
"eslint-plugin-prettier": "5.5.5",
|
|
50
|
+
"prettier": "3.8.1",
|
|
51
|
+
"tsup": "^8.5.1",
|
|
52
|
+
"typescript": "^6.0.2",
|
|
53
|
+
"typescript-eslint": "8.58.0",
|
|
54
|
+
"vitest": "^4.1.3"
|
|
55
|
+
}
|
|
56
|
+
}
|