@humanagencyp/hap-core 0.4.2 → 0.4.3
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/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@humanagencyp/hap-core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Core types, cryptographic primitives, and verification logic for the Human Agency Protocol",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -21,13 +21,6 @@
|
|
|
21
21
|
"dist",
|
|
22
22
|
"src"
|
|
23
23
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
26
|
-
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
27
|
-
"test": "vitest run",
|
|
28
|
-
"test:watch": "vitest",
|
|
29
|
-
"prepublishOnly": "pnpm build"
|
|
30
|
-
},
|
|
31
24
|
"dependencies": {
|
|
32
25
|
"@noble/ed25519": "^2.1.0"
|
|
33
26
|
},
|
|
@@ -36,5 +29,14 @@
|
|
|
36
29
|
"tsup": "^8.0.0",
|
|
37
30
|
"typescript": "^5.3.0",
|
|
38
31
|
"vitest": "^1.0.0"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
35
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"test:watch": "vitest",
|
|
38
|
+
"release:patch": "pnpm version patch && git push --follow-tags",
|
|
39
|
+
"release:minor": "pnpm version minor && git push --follow-tags",
|
|
40
|
+
"release:major": "pnpm version major && git push --follow-tags"
|
|
39
41
|
}
|
|
40
|
-
}
|
|
42
|
+
}
|