-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
63
64
65
66
{
"name": "@hyphen/react-sdk",
"version": "1.2.0",
"description": "Hyphen SDK for React",
"type": "module",
"main": "dist/index.mjs",
"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",
"clean": "rimraf ./dist pnpm-lock.yaml node_modules coverage",
"prepublishOnly": "pnpm build"
},
"keywords": [
"hyphen",
"sdk",
"browser",
"react",
"javascript",
"typescript"
],
"author": "Team Hyphen <hello@hyphen.ai>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@faker-js/faker": "^10.4.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.1.4",
"dotenv": "^17.4.2",
"happy-dom": "^20.9.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"tsd": "^0.33.0",
"tsdown": "^0.21.8",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"@hyphen/browser-sdk": "^1.1.2"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
}
}