@telepat/ideon 0.1.6 → 0.1.13
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/README.md +67 -115
- package/README.zh-Hans.md +114 -0
- package/dist/ideon.js +8720 -7038
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telepat/ideon",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "CLI for generating rich articles and images from ideas.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"build:preview": "vite build",
|
|
31
31
|
"dev": "tsx src/bin/ideon.ts",
|
|
32
32
|
"preview": "npm run build:preview && tsx src/bin/ideon.ts preview --watch",
|
|
33
|
-
"lint": "npm run typecheck && npm run lint:react",
|
|
33
|
+
"lint": "npm run typecheck && npm run check:sync && npm run lint:react",
|
|
34
|
+
"check:sync": "tsx src/integrations/runSyncCheck.ts",
|
|
34
35
|
"lint:react": "eslint src/preview-app --max-warnings=0",
|
|
35
36
|
"typecheck": "tsc --noEmit",
|
|
36
37
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
@@ -38,8 +39,12 @@
|
|
|
38
39
|
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
|
|
39
40
|
"pricing:refresh": "node scripts/refresh-openrouter-pricing.mjs",
|
|
40
41
|
"docs:start": "npm --prefix docs-site run start",
|
|
42
|
+
"docs:start:en": "npm --prefix docs-site run start -- --locale en",
|
|
43
|
+
"docs:start:zh": "npm --prefix docs-site run start -- --locale zh-Hans",
|
|
41
44
|
"docs:build": "npm --prefix docs-site run build",
|
|
42
45
|
"docs:serve": "npm --prefix docs-site run serve",
|
|
46
|
+
"docs:preview:all-locales": "npm run docs:build && npm --prefix docs-site run serve",
|
|
47
|
+
"docs:write-translations": "npm --prefix docs-site run write-translations",
|
|
43
48
|
"docs:typecheck": "npm --prefix docs-site run typecheck"
|
|
44
49
|
},
|
|
45
50
|
"keywords": [
|
|
@@ -52,6 +57,7 @@
|
|
|
52
57
|
"license": "MIT",
|
|
53
58
|
"dependencies": {
|
|
54
59
|
"@ant-design/icons": "^6.1.1",
|
|
60
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
55
61
|
"antd": "^6.3.4",
|
|
56
62
|
"commander": "^14.0.1",
|
|
57
63
|
"env-paths": "^3.0.0",
|