@intend-it/core 1.0.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.
- package/dist/index.js +169784 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@intend-it/core",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Core compiler and AI integration for the Intend programming language",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node",
|
|
20
|
+
"build:types": "tsc --emitDeclarationOnly",
|
|
21
|
+
"clean": "rm -rf dist",
|
|
22
|
+
"test": "bun test"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/DRFR0ST/intend.git",
|
|
27
|
+
"directory": "packages/core"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"intend",
|
|
31
|
+
"compiler",
|
|
32
|
+
"ai",
|
|
33
|
+
"gemini",
|
|
34
|
+
"ollama"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@intend-it/parser": "workspace:*",
|
|
39
|
+
"@google/generative-ai": "^0.21.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/bun": "latest",
|
|
43
|
+
"typescript": "^5.0.0"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"@intend-it/parser": ">=1.0.1"
|
|
47
|
+
}
|
|
48
|
+
}
|