prompt-language-shell 0.2.0 → 0.2.2

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.
Files changed (1) hide show
  1. package/package.json +13 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prompt-language-shell",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Your personal command-line concierge. Ask politely, and it gets things done.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -13,25 +13,28 @@
13
13
  "scripts": {
14
14
  "build": "tsc && chmod +x dist/index.js && mkdir -p dist/config && cp src/config/*.md dist/config/",
15
15
  "dev": "npm run build && tsc --watch",
16
- "prepare": "npm run build",
16
+ "prepare": "husky",
17
17
  "test": "vitest run",
18
18
  "test:watch": "vitest",
19
19
  "format": "prettier --write '**/*.{ts,tsx}'",
20
20
  "format:check": "prettier --check '**/*.{ts,tsx}'",
21
21
  "lint": "eslint .",
22
- "lint:fix": "eslint --fix ."
22
+ "lint:fix": "eslint --fix .",
23
+ "check": "npm run build && npm run test && npm run lint && npm run format:check"
23
24
  },
24
25
  "repository": {
25
26
  "type": "git",
26
27
  "url": "git+https://github.com/aswitalski/pls.git"
27
28
  },
28
29
  "keywords": [
29
- "shell",
30
- "natural",
31
- "language",
32
- "command line",
33
- "assistant",
34
- "concierge"
30
+ "command line interface",
31
+ "developer tools",
32
+ "interactive shell",
33
+ "natural language processing",
34
+ "personal concierge",
35
+ "prompt language",
36
+ "task execution",
37
+ "workflow automation"
35
38
  ],
36
39
  "author": "Sensei Aleksander Świtalski",
37
40
  "license": "ISC",
@@ -50,6 +53,7 @@
50
53
  "@types/node": "^20.10.6",
51
54
  "@types/react": "^19.2.2",
52
55
  "eslint": "^9.17.0",
56
+ "husky": "^9.1.7",
53
57
  "prettier": "^3.6.2",
54
58
  "typescript": "^5.3.3",
55
59
  "typescript-eslint": "^8.19.1",