rulekeeper 0.1.1 → 0.1.3
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/LICENSE +21 -21
- package/README.md +467 -465
- package/dist/index.js +10 -3
- package/dist/index.js.map +1 -1
- package/package.json +66 -64
package/package.json
CHANGED
|
@@ -1,64 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "rulekeeper",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Sync and manage Claude Code rules across projects",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"claude",
|
|
7
|
-
"claude-code",
|
|
8
|
-
"ai",
|
|
9
|
-
"rules",
|
|
10
|
-
"sync",
|
|
11
|
-
"cli",
|
|
12
|
-
"developer-tools"
|
|
13
|
-
],
|
|
14
|
-
"author": "Adam Collins",
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"homepage": "https://rulekeeper.dev",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/adxmcollins/rulekeeper.git"
|
|
20
|
-
},
|
|
21
|
-
"bugs": {
|
|
22
|
-
"url": "https://github.com/adxmcollins/rulekeeper/issues"
|
|
23
|
-
},
|
|
24
|
-
"bin": {
|
|
25
|
-
"rulekeeper": "./dist/index.js",
|
|
26
|
-
"rk": "./dist/index.js"
|
|
27
|
-
},
|
|
28
|
-
"type": "module",
|
|
29
|
-
"exports": {
|
|
30
|
-
".": {
|
|
31
|
-
"import": "./dist/index.js",
|
|
32
|
-
"types": "./dist/index.d.ts"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"files": [
|
|
36
|
-
"dist"
|
|
37
|
-
],
|
|
38
|
-
"engines": {
|
|
39
|
-
"node": ">=18.0.0"
|
|
40
|
-
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"dev": "tsup --watch",
|
|
43
|
-
"build": "tsup",
|
|
44
|
-
"test": "vitest",
|
|
45
|
-
"test:run": "vitest run",
|
|
46
|
-
"lint": "tsc --noEmit",
|
|
47
|
-
"prepublishOnly": "npm run build && npm run test:run",
|
|
48
|
-
"release": "npm run build && npm publish"
|
|
49
|
-
},
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"@clack/prompts": "^0.7.0",
|
|
52
|
-
"commander": "^11.1.0",
|
|
53
|
-
"env-paths": "^3.0.0",
|
|
54
|
-
"picocolors": "^1.0.0",
|
|
55
|
-
"simple-git": "^3.22.0",
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "rulekeeper",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Sync and manage Claude Code rules across projects",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude",
|
|
7
|
+
"claude-code",
|
|
8
|
+
"ai",
|
|
9
|
+
"rules",
|
|
10
|
+
"sync",
|
|
11
|
+
"cli",
|
|
12
|
+
"developer-tools"
|
|
13
|
+
],
|
|
14
|
+
"author": "Adam Collins",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"homepage": "https://rulekeeper.dev",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/adxmcollins/rulekeeper.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/adxmcollins/rulekeeper/issues"
|
|
23
|
+
},
|
|
24
|
+
"bin": {
|
|
25
|
+
"rulekeeper": "./dist/index.js",
|
|
26
|
+
"rk": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"type": "module",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist"
|
|
37
|
+
],
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=18.0.0"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"dev": "tsup --watch",
|
|
43
|
+
"build": "tsup",
|
|
44
|
+
"test": "vitest",
|
|
45
|
+
"test:run": "vitest run",
|
|
46
|
+
"lint": "tsc --noEmit",
|
|
47
|
+
"prepublishOnly": "npm run build && npm run test:run",
|
|
48
|
+
"release": "npm run build && npm publish"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@clack/prompts": "^0.7.0",
|
|
52
|
+
"commander": "^11.1.0",
|
|
53
|
+
"env-paths": "^3.0.0",
|
|
54
|
+
"picocolors": "^1.0.0",
|
|
55
|
+
"simple-git": "^3.22.0",
|
|
56
|
+
"update-notifier": "^7.0.0",
|
|
57
|
+
"yaml": "^2.3.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@types/update-notifier": "^6.0.8",
|
|
61
|
+
"@types/node": "^18.19.0",
|
|
62
|
+
"tsup": "^8.0.0",
|
|
63
|
+
"typescript": "^5.3.0",
|
|
64
|
+
"vitest": "^1.0.0"
|
|
65
|
+
}
|
|
66
|
+
}
|