-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
54
55
56
57
58
59
60
61
62
{
"name": "@hyphen/sdk",
"version": "3.1.0",
"description": "Hyphen SDK for Node.js",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"types": "dist/index.d.mts",
"scripts": {
"lint": "biome check --write --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
"build": "tsdown src/index.ts --format esm,cjs --dts",
"clean": "rimraf ./dist pnpm-lock.yaml node_modules coverage",
"prepublishOnly": "pnpm build"
},
"keywords": [
"hyphen",
"sdk",
"nodejs",
"javascript",
"typescript"
],
"author": "Team Hyphen <hello@hyphen.ai>",
"license": "MIT",
"engines": {
"node": ">=20.12.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@faker-js/faker": "^10.4.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"rimraf": "^6.1.3",
"tsd": "^0.33.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"@cacheable/net": "^2.0.7",
"cacheable": "^2.3.4",
"hookified": "^2.1.1",
"pino": "^10.3.1"
}
}