@rogatio/cli 1.0.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.
Files changed (2) hide show
  1. package/dist/node/index.js +3928 -0
  2. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@rogatio/cli",
3
+ "version": "1.0.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Local-first browser request and response rules — editor host, file verification, test runner, and runtime dispatch.",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/drmaas/rogatio.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/drmaas/rogatio/issues"
14
+ },
15
+ "homepage": "https://github.com/drmaas/rogatio#readme",
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "exports": {
23
+ ".": {
24
+ "types": "./src/index.ts",
25
+ "import": "./dist/node/index.js"
26
+ }
27
+ },
28
+ "bin": {
29
+ "rogatio": "./dist/node/index.js"
30
+ },
31
+ "scripts": {
32
+ "format": "biome format --write src test",
33
+ "format:check": "biome check --formatter-enabled=true --linter-enabled=false src test",
34
+ "lint": "biome check --formatter-enabled=false --linter-enabled=true src test",
35
+ "typecheck": "tsc --noEmit",
36
+ "test": "vitest run --config vitest.config.ts",
37
+ "build": "node ../../scripts/build.ts"
38
+ },
39
+ "dependencies": {
40
+ "@rogatio/compiler": "workspace:*",
41
+ "@rogatio/dry-run": "workspace:*",
42
+ "@rogatio/editor": "workspace:*",
43
+ "@rogatio/runtime": "workspace:*",
44
+ "@rogatio/schema": "workspace:*"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "26.2.0",
48
+ "typescript": "7.0.2",
49
+ "vitest": "4.1.11"
50
+ }
51
+ }