-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@helixar_ai/hdp",
"version": "0.1.2",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"workspaces": ["packages/*"],
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Helixar-AI/HDP.git"
},
"keywords": [],
"author": "",
"license": "CC-BY-4.0",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Helixar-AI/HDP/issues"
},
"homepage": "https://github.com/Helixar-AI/HDP#readme",
"dependencies": {
"@noble/ed25519": "^3.0.1",
"@noble/hashes": "^2.0.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"json-canonicalize": "^2.0.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/uuid": "^10.0.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}