aicm 0.19.1 → 0.20.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aicm",
3
- "version": "0.19.1",
3
+ "version": "0.20.1",
4
4
  "description": "A TypeScript CLI tool for managing AI IDE rules across different projects and teams",
5
5
  "main": "dist/api.js",
6
6
  "types": "dist/api.d.ts",
@@ -12,6 +12,21 @@
12
12
  "README.md",
13
13
  "LICENSE"
14
14
  ],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "watch": "tsc --watch",
18
+ "start": "node dist/bin/aicm.js",
19
+ "dev": "ts-node src/bin/aicm.ts",
20
+ "test": "pnpm build && jest",
21
+ "test:watch": "jest --watch",
22
+ "test:all": "npm run build && npm run test",
23
+ "format": "prettier --write .",
24
+ "format:check": "prettier --check .",
25
+ "lint": "eslint",
26
+ "prepare": "husky install && npx ts-node src/bin/aicm.ts install",
27
+ "version": "auto-changelog -p && git add CHANGELOG.md",
28
+ "release": "np --no-tests"
29
+ },
15
30
  "keywords": [
16
31
  "ai",
17
32
  "ide",
@@ -51,18 +66,5 @@
51
66
  "*.{js,ts,json,md,mjs}": "prettier --write",
52
67
  "*.ts": "eslint"
53
68
  },
54
- "scripts": {
55
- "build": "tsc",
56
- "watch": "tsc --watch",
57
- "start": "node dist/bin/aicm.js",
58
- "dev": "ts-node src/bin/aicm.ts",
59
- "test": "pnpm build && jest",
60
- "test:watch": "jest --watch",
61
- "test:all": "npm run build && npm run test",
62
- "format": "prettier --write .",
63
- "format:check": "prettier --check .",
64
- "lint": "eslint",
65
- "version": "auto-changelog -p && git add CHANGELOG.md",
66
- "release": "np --no-tests"
67
- }
68
- }
69
+ "packageManager": "pnpm@10.18.3"
70
+ }