-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.53 KB
/
package.json
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": "@onehop/js",
"version": "1.47.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"node": {
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./utils/zod": {
"import": "./dist/utils/zod/index.js",
"require": "./dist/utils/zod/index.cjs"
}
},
"repository": "https://github.com/hopinc/js.git",
"homepage": "https://docs.hop.io/sdks/server/js",
"author": "Hop <developers@hop.io>",
"license": "MIT",
"sideEffects": false,
"packageManager": "yarn@3.5.0",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json",
"utils"
],
"scripts": {
"build": "rm -rf dist && tsup && node ./build/copy.js",
"bench": "HOP_DEBUG=true tsx _workbench.ts",
"release": "yarn build && yarn changeset publish",
"fullbuild": "yarn build && yarn docs",
"test": "tsx tests/index.ts",
"package": "yarn build && yarn pack"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@types/glob": "8.1.0",
"@types/node": "18.15.5",
"dotenv": "16.0.3",
"glob": "9.3.2",
"prettier": "2.8.6",
"tsup": "6.7.0",
"tsx": "3.12.6",
"typedoc": "0.23.28",
"typedoc-plugin-markdown": "3.14.0",
"typedoc-plugin-missing-exports": "1.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@onehop/json-methods": "^1.2.0",
"cross-fetch": "^3.1.5",
"uncrypto": "^0.1.3",
"zod": "^3.21.4"
}
}