qavor 0.1.3 → 0.1.5
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 +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qavor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A CLI for managing a constellation of related repositories as one cohesive developer workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,17 +20,6 @@
|
|
|
20
20
|
"dist",
|
|
21
21
|
"schemas"
|
|
22
22
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "tsup",
|
|
25
|
-
"dev": "tsx src/index.ts",
|
|
26
|
-
"qavor": "tsx src/index.ts",
|
|
27
|
-
"gen:types": "tsx scripts/gen-types.ts",
|
|
28
|
-
"gen:types:check": "tsx scripts/gen-types.ts --check",
|
|
29
|
-
"lint": "eslint .",
|
|
30
|
-
"format": "prettier --write .",
|
|
31
|
-
"test": "node --import tsx --test --test-reporter=spec test/**/*.test.ts",
|
|
32
|
-
"typecheck": "tsc --noEmit"
|
|
33
|
-
},
|
|
34
23
|
"dependencies": {
|
|
35
24
|
"ajv": "^8.17.1",
|
|
36
25
|
"ajv-formats": "^3.0.1",
|
|
@@ -52,9 +41,19 @@
|
|
|
52
41
|
"tsx": "^4.19.2",
|
|
53
42
|
"typescript": "^5.7.3"
|
|
54
43
|
},
|
|
55
|
-
"packageManager": "pnpm@11.1.2",
|
|
56
44
|
"publishConfig": {
|
|
57
45
|
"access": "public",
|
|
58
46
|
"provenance": true
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"dev": "tsx src/index.ts",
|
|
51
|
+
"qavor": "tsx src/index.ts",
|
|
52
|
+
"gen:types": "tsx scripts/gen-types.ts",
|
|
53
|
+
"gen:types:check": "tsx scripts/gen-types.ts --check",
|
|
54
|
+
"lint": "eslint .",
|
|
55
|
+
"format": "prettier --write .",
|
|
56
|
+
"test": "node --import tsx --test --test-reporter=spec test/**/*.test.ts",
|
|
57
|
+
"typecheck": "tsc --noEmit"
|
|
59
58
|
}
|
|
60
|
-
}
|
|
59
|
+
}
|