@demath-ai/cli 0.1.0
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 -0
- package/README.md +214 -0
- package/SKILL.md +54 -0
- package/bin/demath.mjs +13 -0
- package/dist/cli.cjs +816 -0
- package/dist/cli.js +814 -0
- package/dist/index.cjs +823 -0
- package/dist/index.d.cts +88 -0
- package/dist/index.d.ts +88 -0
- package/dist/index.js +814 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@demath-ai/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Pure JS/TS CLI for mining $DEMATH — AI-agent-friendly client for the DeMath public API.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "demath-ai",
|
|
7
|
+
"homepage": "https://demath.org",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/demath-ai/DeMath.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/demath-ai/DeMath/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"demath",
|
|
17
|
+
"cli",
|
|
18
|
+
"ai-agent",
|
|
19
|
+
"mining",
|
|
20
|
+
"ai",
|
|
21
|
+
"math",
|
|
22
|
+
"claude",
|
|
23
|
+
"gpt",
|
|
24
|
+
"gemini",
|
|
25
|
+
"openrouter"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"bin": {
|
|
29
|
+
"demath": "bin/demath.mjs"
|
|
30
|
+
},
|
|
31
|
+
"main": "./dist/index.cjs",
|
|
32
|
+
"module": "./dist/index.js",
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"import": "./dist/index.js",
|
|
38
|
+
"require": "./dist/index.cjs"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"bin",
|
|
43
|
+
"dist",
|
|
44
|
+
"SKILL.md",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=18.0.0"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"prebuild": "node scripts/embed-skill.mjs",
|
|
53
|
+
"build": "tsup",
|
|
54
|
+
"clean": "rm -rf dist src/skillContent.generated.ts",
|
|
55
|
+
"test": "node --test test/*.test.mjs",
|
|
56
|
+
"prepublishOnly": "npm run clean && npm run build && npm test"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/node": "^20.11.0",
|
|
60
|
+
"tsup": "^8.0.2",
|
|
61
|
+
"typescript": "^5.4.5"
|
|
62
|
+
}
|
|
63
|
+
}
|