@prnv/tuck 1.7.0 → 1.9.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 +56 -7
- package/dist/index.js +10827 -6589
- package/dist/index.js.map +1 -1
- package/package.json +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prnv/tuck",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Modern dotfiles manager with a beautiful CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dotfiles",
|
|
@@ -45,8 +45,14 @@
|
|
|
45
45
|
"test": "vitest run",
|
|
46
46
|
"test:watch": "vitest",
|
|
47
47
|
"test:coverage": "vitest run --coverage",
|
|
48
|
+
"test:security": "vitest run --dir tests/security",
|
|
49
|
+
"test:integration": "vitest run --dir tests/integration",
|
|
50
|
+
"test:unit": "vitest run --dir tests/lib --dir tests/commands",
|
|
51
|
+
"bench": "vitest bench --config vitest.bench.config.ts",
|
|
52
|
+
"bench:watch": "vitest bench --config vitest.bench.config.ts --watch",
|
|
48
53
|
"prepare": "husky install",
|
|
49
|
-
"prepublishOnly": "pnpm build"
|
|
54
|
+
"prepublishOnly": "pnpm build",
|
|
55
|
+
"build:man": "ts-node scripts/generate-man.ts"
|
|
50
56
|
},
|
|
51
57
|
"dependencies": {
|
|
52
58
|
"@clack/prompts": "^0.7.0",
|
|
@@ -79,6 +85,7 @@
|
|
|
79
85
|
"memfs": "^4.6.0",
|
|
80
86
|
"prettier": "^3.2.4",
|
|
81
87
|
"semantic-release": "^23.0.0",
|
|
88
|
+
"ts-node": "^10.9.2",
|
|
82
89
|
"tsup": "^8.0.1",
|
|
83
90
|
"typescript": "^5.3.3",
|
|
84
91
|
"vitest": "^1.2.0"
|