@orcalang/orca-lang 0.1.0 → 0.1.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 +0 -0
- package/package.json +9 -10
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orcalang/orca-lang",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Orca (Orchestrated State Machine Language) - an LLM-native code generation target",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,14 +26,6 @@
|
|
|
26
26
|
"dist/",
|
|
27
27
|
"src/"
|
|
28
28
|
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "tsc",
|
|
31
|
-
"prepublishOnly": "npm run build",
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest",
|
|
34
|
-
"verify": "tsx src/index.ts verify",
|
|
35
|
-
"compile": "tsx src/index.ts compile"
|
|
36
|
-
},
|
|
37
29
|
"devDependencies": {
|
|
38
30
|
"@types/js-yaml": "^4.0.9",
|
|
39
31
|
"@types/node": "^20.10.0",
|
|
@@ -45,5 +37,12 @@
|
|
|
45
37
|
"dotenv": "^17.3.1",
|
|
46
38
|
"js-yaml": "^4.1.1",
|
|
47
39
|
"xstate": "^5.28.0"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "tsc",
|
|
43
|
+
"test": "vitest run",
|
|
44
|
+
"test:watch": "vitest",
|
|
45
|
+
"verify": "tsx src/index.ts verify",
|
|
46
|
+
"compile": "tsx src/index.ts compile"
|
|
48
47
|
}
|
|
49
|
-
}
|
|
48
|
+
}
|