-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@hyphen/browser-sdk",
"version": "1.1.2",
"description": "Hyphen SDK for Browser / Javascript",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"browser": "dist/index.browser.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"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": "rimraf ./dist && tsdown",
"clean": "rimraf ./dist node_modules coverage",
"prepare": "rimraf ./dist && tsdown"
},
"keywords": [
"hyphen",
"sdk",
"browser",
"react",
"vue",
"vuejs",
"svelt",
"javascript",
"typescript"
],
"author": "Team Hyphen <hello@hyphen.ai>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@faker-js/faker": "^10.4.0",
"@hyphen/sdk": "^3.0.1",
"@swc/core": "^1.15.24",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"rimraf": "^6.1.3",
"tsd": "^0.33.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
},
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"hookified": "^2.1.1"
}
}