@elizaos/cli 1.2.12 → 1.3.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.
Files changed (47) hide show
  1. package/dist/{chunk-OXCJTWT3.js → chunk-KDNV7EA5.js} +37 -1
  2. package/dist/{chunk-WEAYAAIM.js → chunk-RM6LUTKD.js} +1 -1
  3. package/dist/commands/create/actions/index.js +1 -1
  4. package/dist/commands/create/index.js +2 -2
  5. package/dist/index.js +37 -4
  6. package/dist/templates/plugin-quick-starter/.gitignore +66 -0
  7. package/dist/templates/plugin-quick-starter/.npmignore +5 -0
  8. package/dist/templates/plugin-quick-starter/package.json +2 -1
  9. package/dist/templates/plugin-quick-starter/src/plugin.ts +1 -1
  10. package/dist/templates/plugin-starter/.gitignore +66 -0
  11. package/dist/templates/plugin-starter/.npmignore +5 -0
  12. package/dist/templates/plugin-starter/CLAUDE.md +465 -0
  13. package/dist/templates/plugin-starter/dist/assets/{index-DUtsQhKX.js → index-D1cHX53P.js} +1 -1
  14. package/dist/templates/plugin-starter/dist/index.html +1 -1
  15. package/dist/templates/plugin-starter/dist/index.js +1 -1
  16. package/dist/templates/plugin-starter/dist/index.js.map +1 -1
  17. package/dist/templates/plugin-starter/package.json +2 -1
  18. package/dist/templates/plugin-starter/src/plugin.ts +1 -1
  19. package/dist/templates/project-starter/.gitignore +57 -0
  20. package/dist/templates/project-starter/.npmignore +11 -0
  21. package/dist/templates/project-starter/CLAUDE.md +698 -0
  22. package/dist/templates/project-starter/package.json +4 -4
  23. package/dist/templates/project-tee-starter/.gitignore +57 -0
  24. package/dist/templates/project-tee-starter/.npmignore +6 -0
  25. package/dist/templates/project-tee-starter/package.json +3 -3
  26. package/package.json +10 -6
  27. package/templates/plugin-quick-starter/.gitignore +66 -0
  28. package/templates/plugin-quick-starter/.npmignore +5 -0
  29. package/templates/plugin-quick-starter/package.json +2 -1
  30. package/templates/plugin-quick-starter/src/plugin.ts +1 -1
  31. package/templates/plugin-starter/.gitignore +66 -0
  32. package/templates/plugin-starter/.npmignore +5 -0
  33. package/templates/plugin-starter/CLAUDE.md +465 -0
  34. package/templates/plugin-starter/dist/.vite/manifest.json +1 -1
  35. package/templates/plugin-starter/dist/assets/{index-DUtsQhKX.js → index-D1cHX53P.js} +1 -1
  36. package/templates/plugin-starter/dist/index.html +1 -1
  37. package/templates/plugin-starter/dist/index.js +1 -1
  38. package/templates/plugin-starter/dist/index.js.map +1 -1
  39. package/templates/plugin-starter/package.json +2 -1
  40. package/templates/plugin-starter/src/plugin.ts +1 -1
  41. package/templates/project-starter/.gitignore +57 -0
  42. package/templates/project-starter/.npmignore +11 -0
  43. package/templates/project-starter/CLAUDE.md +698 -0
  44. package/templates/project-starter/package.json +4 -4
  45. package/templates/project-tee-starter/.gitignore +57 -0
  46. package/templates/project-tee-starter/.npmignore +6 -0
  47. package/templates/project-tee-starter/package.json +3 -3
@@ -0,0 +1,57 @@
1
+ # Build outputs
2
+ dist/
3
+ node_modules/
4
+
5
+ # Environment files
6
+ .env
7
+ .env.local
8
+ .env.production
9
+ .env.staging
10
+ .env.development
11
+ .env.bak
12
+ *.env
13
+
14
+ # OS files
15
+ .DS_Store
16
+ Thumbs.db
17
+
18
+ # IDE files
19
+ .vscode/
20
+ .idea/
21
+ *.swp
22
+ *.swo
23
+
24
+ # Logs
25
+ *.log
26
+ npm-debug.log*
27
+ yarn-debug.log*
28
+ yarn-error.log*
29
+
30
+ # Runtime data
31
+ pids/
32
+ *.pid
33
+ *.seed
34
+ *.pid.lock
35
+
36
+ # Coverage directory used by tools like istanbul
37
+ coverage/
38
+
39
+ # Cache directories
40
+ .cache/
41
+ .npm/
42
+ .eslintcache
43
+
44
+ # Temporary folders
45
+ tmp/
46
+ temp/
47
+
48
+ # Database files
49
+ *.db
50
+ *.pglite
51
+ *.pglite3
52
+
53
+ # ElizaOS specific
54
+ .eliza/
55
+ .elizadb/
56
+ pglite/
57
+ cache/
@@ -0,0 +1,6 @@
1
+ .turbo
2
+ dist
3
+ node_modules
4
+ .env
5
+ *.env
6
+ .env.local
@@ -33,10 +33,10 @@
33
33
  "GUIDE.md"
34
34
  ],
35
35
  "dependencies": {
36
- "@elizaos/cli": "1.2.12",
37
- "@elizaos/core": "1.2.12",
36
+ "@elizaos/cli": "1.3.1",
37
+ "@elizaos/core": "1.3.1",
38
38
  "@elizaos/plugin-redpill": "1.0.3",
39
- "@elizaos/plugin-sql": "1.2.12",
39
+ "@elizaos/plugin-sql": "1.3.1",
40
40
  "@phala/dstack-sdk": "0.1.11",
41
41
  "@solana/web3.js": "1.98.2",
42
42
  "viem": "2.30.1",