@openspecui/core 0.9.0 → 1.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.
Files changed (3) hide show
  1. package/dist/index.d.mts +1090 -108
  2. package/dist/index.mjs +1414 -269
  3. package/package.json +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openspecui/core",
3
- "version": "0.9.0",
3
+ "version": "1.0.2",
4
4
  "description": "Core OpenSpec adapter and parser",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -16,6 +16,7 @@
16
16
  ],
17
17
  "dependencies": {
18
18
  "@parcel/watcher": "^2.5.1",
19
+ "yaml": "^2.8.2",
19
20
  "zod": "^3.24.1"
20
21
  },
21
22
  "devDependencies": {
@@ -29,6 +30,7 @@
29
30
  },
30
31
  "scripts": {
31
32
  "build": "tsdown src/index.ts --format esm --dts",
33
+ "dev": "tsdown src/index.ts --format esm --dts --watch",
32
34
  "test": "vitest run",
33
35
  "test:watch": "vitest",
34
36
  "typecheck": "tsc --noEmit"