alex-c-line 1.5.2 → 1.5.3
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/package.json +36 -24
package/package.json
CHANGED
|
@@ -1,51 +1,63 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alex-c-line",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "1.5.3",
|
|
4
|
+
"description": "Command-line tool with commands to streamline the developer workflow",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/AlexMan123456/alex-c-line.git"
|
|
8
|
+
},
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"author": "alextheman",
|
|
11
|
+
"type": "module",
|
|
5
12
|
"main": "dist/index.js",
|
|
6
13
|
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
14
|
"bin": {
|
|
11
15
|
"alex-c-line": "dist/index.js"
|
|
12
16
|
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
13
20
|
"scripts": {
|
|
14
|
-
"test": "vitest run",
|
|
15
|
-
"test-watch": "vitest",
|
|
16
|
-
"format": "prettier --write --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\" && eslint --fix --suppress-all \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
|
|
17
|
-
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" \"tests/**/*.ts\" && prettier --check --parser typescript \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
18
21
|
"build": "tsup",
|
|
19
|
-
"command": "npm run build && echo && echo \"Command output:\" && npx alex-c-line",
|
|
20
|
-
"prepare": "husky",
|
|
21
|
-
"update-dependencies": "bash -c 'npx npm-check-updates -u \"$@\" && npm install' --",
|
|
22
22
|
"change-major": "npm version major -m \"Change version number to v%s\"",
|
|
23
23
|
"change-minor": "npm version minor -m \"Change version number to v%s\"",
|
|
24
|
-
"change-patch": "npm version patch -m \"Change version number to v%s\""
|
|
24
|
+
"change-patch": "npm version patch -m \"Change version number to v%s\"",
|
|
25
|
+
"command": "npm run build && echo && echo \"Command output:\" && npx alex-c-line",
|
|
26
|
+
"format": "npm run format-prettier && npm run format-eslint",
|
|
27
|
+
"format-eslint": "eslint --fix --suppress-all \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
|
|
28
|
+
"format-prettier": "npm run format-prettier-typescript && npm run format-prettier-javascript",
|
|
29
|
+
"format-prettier-javascript": "prettier --write \"./**/*.js\"",
|
|
30
|
+
"format-prettier-typescript": "prettier --write --parser typescript \"./**/*.ts\"",
|
|
31
|
+
"lint": "npm run lint-tsc && npm run lint-eslint && npm run lint-prettier",
|
|
32
|
+
"lint-eslint": "eslint \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
33
|
+
"lint-prettier": "npm run lint-prettier-typescript && npm run lint-prettier-javascript",
|
|
34
|
+
"lint-prettier-javascript": "prettier --check \"./**.js\"",
|
|
35
|
+
"lint-prettier-typescript": "prettier --check --parser typescript \"./**/*.ts\"",
|
|
36
|
+
"lint-tsc": "tsc --noEmit",
|
|
37
|
+
"prepare": "husky",
|
|
38
|
+
"test": "vitest run",
|
|
39
|
+
"test-watch": "vitest",
|
|
40
|
+
"update-dependencies": "bash -c 'npx npm-check-updates -u \"$@\" && npm install' --"
|
|
25
41
|
},
|
|
26
|
-
"keywords": [],
|
|
27
|
-
"author": "",
|
|
28
|
-
"license": "ISC",
|
|
29
|
-
"type": "module",
|
|
30
42
|
"dependencies": {
|
|
31
|
-
"commander": "^14.0.
|
|
32
|
-
"dotenv": "^17.2.
|
|
43
|
+
"commander": "^14.0.2",
|
|
44
|
+
"dotenv": "^17.2.3",
|
|
33
45
|
"dotenv-stringify": "^3.0.1",
|
|
34
46
|
"execa": "^9.6.0"
|
|
35
47
|
},
|
|
36
48
|
"devDependencies": {
|
|
37
|
-
"@alextheman/eslint-plugin": "^
|
|
49
|
+
"@alextheman/eslint-plugin": "^2.5.0",
|
|
38
50
|
"@types/eslint": "^9.6.1",
|
|
39
|
-
"@types/node": "^24.
|
|
40
|
-
"eslint": "^9.
|
|
51
|
+
"@types/node": "^24.10.0",
|
|
52
|
+
"eslint": "^9.39.1",
|
|
41
53
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
42
54
|
"husky": "^9.1.7",
|
|
43
55
|
"prettier": "^3.6.2",
|
|
44
56
|
"tempy": "^3.1.0",
|
|
45
57
|
"ts-node": "^10.9.2",
|
|
46
58
|
"tsup": "^8.5.0",
|
|
47
|
-
"typescript": "^5.9.
|
|
59
|
+
"typescript": "^5.9.3",
|
|
48
60
|
"vite-tsconfig-paths": "^5.1.4",
|
|
49
|
-
"vitest": "^
|
|
61
|
+
"vitest": "^4.0.8"
|
|
50
62
|
}
|
|
51
63
|
}
|