@huaqiu/hqeda 0.1.1 → 0.1.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/dist/index.cjs +2044 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +45 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/generated/capability-registry.json +1133 -5
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@huaqiu/hqeda",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Official HQ EDA Skill Package — executable SDK capabilities and human-authored review playbooks for Huaqiu EDA engines.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
11
12
|
"import": "./dist/index.js",
|
|
12
|
-
"
|
|
13
|
+
"require": "./dist/index.cjs",
|
|
14
|
+
"default": "./dist/index.js"
|
|
13
15
|
},
|
|
14
16
|
"./skill": "./SKILL.md",
|
|
15
17
|
"./manifest": "./skill.json",
|
|
@@ -28,8 +30,8 @@
|
|
|
28
30
|
],
|
|
29
31
|
"dependencies": {
|
|
30
32
|
"@bufbuild/protobuf": "^2.6.3",
|
|
31
|
-
"@hqedge/connect": "0.1.
|
|
32
|
-
"@huaqiu/huaqiu-client": "0.0.
|
|
33
|
+
"@hqedge/connect": "0.1.12",
|
|
34
|
+
"@huaqiu/huaqiu-client": "0.0.4"
|
|
33
35
|
},
|
|
34
36
|
"devDependencies": {
|
|
35
37
|
"@types/node": "^24.0.0",
|
|
@@ -61,7 +63,7 @@
|
|
|
61
63
|
"node": ">=18.0.0"
|
|
62
64
|
},
|
|
63
65
|
"scripts": {
|
|
64
|
-
"build": "tsup src/index.ts --format esm --dts --clean",
|
|
66
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
65
67
|
"test": "vitest run"
|
|
66
68
|
}
|
|
67
69
|
}
|