@aria-cli/types 1.0.15 → 1.0.18

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/README.md +17 -0
  2. package/package.json +8 -5
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @aria-cli/types
2
+
3
+
4
+
5
+ Part of [ARIA](https://www.npmjs.com/package/@aria-cli/cli) — Adaptive Reasoning Intelligence Agent.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm i @aria-cli/types
11
+ ```
12
+
13
+ See the main [`@aria-cli/cli`](https://www.npmjs.com/package/@aria-cli/cli) package for full documentation.
14
+
15
+ ## License
16
+
17
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aria-cli/types",
3
- "version": "1.0.15",
3
+ "version": "1.0.18",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -11,6 +11,10 @@
11
11
  "require": "./dist-cjs/index.js"
12
12
  }
13
13
  },
14
+ "scripts": {
15
+ "test": "vitest run --config vitest.config.ts",
16
+ "dev": "tsc --watch"
17
+ },
14
18
  "devDependencies": {
15
19
  "typescript": "^5.9.3",
16
20
  "vitest": "^4.0.18"
@@ -21,8 +25,7 @@
21
25
  "!**/*.map",
22
26
  "!**/*.tsbuildinfo"
23
27
  ],
24
- "scripts": {
25
- "test": "vitest run --config vitest.config.ts",
26
- "dev": "tsc --watch"
28
+ "engines": {
29
+ "node": ">=20.0.0"
27
30
  }
28
- }
31
+ }