steervec 0.0.0-bootstrap → 0.0.2
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 +5 -0
- package/dist/bin.d.ts +2 -0
- package/dist/bin.js +21 -0
- package/dist/bin.js.map +1 -0
- package/package.json +35 -5
package/README.md
ADDED
package/dist/bin.d.ts
ADDED
package/dist/bin.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { main } from 'bin-shim';
|
|
3
|
+
main({
|
|
4
|
+
scope: 'steervec',
|
|
5
|
+
binaryName: 'steervec',
|
|
6
|
+
from: import.meta.url,
|
|
7
|
+
platformPackage: '@{scope}/{triple}',
|
|
8
|
+
triples: {
|
|
9
|
+
'linux-x64': 'x86_64-unknown-linux-gnu',
|
|
10
|
+
'linux-arm64': 'aarch64-unknown-linux-gnu',
|
|
11
|
+
'darwin-x64': 'x86_64-apple-darwin',
|
|
12
|
+
'darwin-arm64': 'aarch64-apple-darwin',
|
|
13
|
+
'win32-x64': 'x86_64-pc-windows-msvc',
|
|
14
|
+
},
|
|
15
|
+
})
|
|
16
|
+
.then((code) => process.exit(code))
|
|
17
|
+
.catch((err) => {
|
|
18
|
+
process.stderr.write(`${err.message}\n`);
|
|
19
|
+
process.exit(1);
|
|
20
|
+
});
|
|
21
|
+
//# sourceMappingURL=bin.js.map
|
package/dist/bin.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bin.js","sourceRoot":"","sources":["../src/bin.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAEhC,IAAI,CAAC;IACH,KAAK,EAAE,UAAU;IACjB,UAAU,EAAE,UAAU;IACtB,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG;IACrB,eAAe,EAAE,mBAAmB;IACpC,OAAO,EAAE;QACP,WAAW,EAAE,0BAA0B;QACvC,aAAa,EAAE,2BAA2B;QAC1C,YAAY,EAAE,qBAAqB;QACnC,cAAc,EAAE,sBAAsB;QACtC,WAAW,EAAE,wBAAwB;KACtC;CACF,CAAC;KACC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAClC,KAAK,CAAC,CAAC,GAAU,EAAE,EAAE;IACpB,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC;IACzC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "steervec",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "CLI for the steervec pattern: non-interactive agents converge specs into code without human review.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"repository":
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"repository": "https://github.com/thekevinscott/steervec",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"steervec": "dist/bin.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node scripts/build.mjs",
|
|
16
|
+
"lint": "eslint src",
|
|
17
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
18
|
+
"prepublishOnly": "npm run build"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=20.20.0"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"bin-shim": "^0.1.1"
|
|
25
|
+
},
|
|
26
|
+
"optionalDependencies": {
|
|
27
|
+
"@steervec/x86_64-unknown-linux-gnu": "0.0.2",
|
|
28
|
+
"@steervec/aarch64-unknown-linux-gnu": "0.0.2",
|
|
29
|
+
"@steervec/x86_64-apple-darwin": "0.0.2",
|
|
30
|
+
"@steervec/aarch64-apple-darwin": "0.0.2",
|
|
31
|
+
"@steervec/x86_64-pc-windows-msvc": "0.0.2"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/node": "^22.9.0",
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
|
36
|
+
"@typescript-eslint/parser": "^8.15.0",
|
|
37
|
+
"eslint": "^9.15.0",
|
|
38
|
+
"typescript": "^5.6.3"
|
|
9
39
|
}
|
|
10
40
|
}
|