real-link-ai 1.6.1 → 1.6.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/dist/index.js +0 -0
- package/package.json +11 -10
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "real-link-ai",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Real Link AI CLI — Distributed AI agent coordination for game development",
|
|
5
5
|
"bin": {
|
|
6
6
|
"rlcreate": "dist/index.js"
|
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
"dist",
|
|
10
10
|
"README.md"
|
|
11
11
|
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc",
|
|
14
|
+
"dev": "tsc --watch",
|
|
15
|
+
"typecheck": "tsc --noEmit",
|
|
16
|
+
"clean": "node -e \"require('fs').rmSync('dist',{ recursive:true, force:true })\"",
|
|
17
|
+
"prepublishOnly": "npm run build"
|
|
18
|
+
},
|
|
12
19
|
"keywords": [
|
|
13
20
|
"ai",
|
|
14
21
|
"agents",
|
|
@@ -22,9 +29,9 @@
|
|
|
22
29
|
],
|
|
23
30
|
"author": "Real Link AI <radiantclay@gmail.com>",
|
|
24
31
|
"license": "MIT",
|
|
25
|
-
|
|
32
|
+
"repository": {
|
|
26
33
|
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/real-link-
|
|
34
|
+
"url": "git+https://github.com/real-link-tech/real-link-ai.git",
|
|
28
35
|
"directory": "cli"
|
|
29
36
|
},
|
|
30
37
|
"homepage": "https://real-link.ai",
|
|
@@ -37,11 +44,5 @@
|
|
|
37
44
|
"devDependencies": {
|
|
38
45
|
"typescript": "^5.7.0",
|
|
39
46
|
"@types/node": "^22.0.0"
|
|
40
|
-
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"build": "tsc",
|
|
43
|
-
"dev": "tsc --watch",
|
|
44
|
-
"typecheck": "tsc --noEmit",
|
|
45
|
-
"clean": "node -e \"require('fs').rmSync('dist',{ recursive:true, force:true })\""
|
|
46
47
|
}
|
|
47
|
-
}
|
|
48
|
+
}
|