askpplx 1.3.1 → 1.4.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/package.json +9 -12
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "askpplx",
|
|
3
3
|
"author": "Łukasz Jerciński",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.4.0",
|
|
6
6
|
"description": "Minimal Unix-style CLI for querying Perplexity Sonar API.",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -19,21 +19,21 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"
|
|
22
|
+
"prepare": "git config core.hooksPath .githooks",
|
|
23
|
+
"prepublishOnly": "pnpm run rebuild",
|
|
23
24
|
"build": "tsc -p tsconfig.app.json && cp -r src/prompts dist/",
|
|
24
25
|
"clean": "rm -rf dist *.tsbuildinfo",
|
|
25
|
-
"rebuild": "pnpm run clean && pnpm run build",
|
|
26
|
-
"prepare": "husky",
|
|
27
|
-
"prepublishOnly": "pnpm run rebuild",
|
|
28
|
-
"typecheck": "tsc -b --noEmit",
|
|
29
26
|
"format": "prettier --write .",
|
|
30
27
|
"format:check": "prettier --check .",
|
|
28
|
+
"fta": "fta-check",
|
|
29
|
+
"knip": "knip",
|
|
31
30
|
"lint": "eslint",
|
|
31
|
+
"rebuild": "pnpm run clean && pnpm run build",
|
|
32
|
+
"start": "pnpm -s run rebuild && node --env-file=.env bin/askpplx",
|
|
32
33
|
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest",
|
|
34
34
|
"test:coverage": "vitest run --coverage",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
35
|
+
"test:watch": "vitest",
|
|
36
|
+
"typecheck": "tsc -b --noEmit"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [],
|
|
39
39
|
"packageManager": "pnpm@10.24.0",
|
|
@@ -49,8 +49,6 @@
|
|
|
49
49
|
"zod": "^4.1.13"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@commitlint/cli": "^20.2.0",
|
|
53
|
-
"@commitlint/config-conventional": "^20.2.0",
|
|
54
52
|
"@eslint/compat": "^2.0.0",
|
|
55
53
|
"@eslint/js": "^9.39.1",
|
|
56
54
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
@@ -63,7 +61,6 @@
|
|
|
63
61
|
"fta-check": "^1.2.0",
|
|
64
62
|
"fta-cli": "^3.0.0",
|
|
65
63
|
"globals": "^16.5.0",
|
|
66
|
-
"husky": "^9.1.7",
|
|
67
64
|
"knip": "^5.71.0",
|
|
68
65
|
"prettier": "3.7.4",
|
|
69
66
|
"semantic-release": "^25.0.2",
|