-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"author": "seven communications GmbH & Co. KG <[email protected]> (https://www.seven.io)",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/seven-io/js-client/issues"
},
"description": "Official API client for seven",
"dependencies": {
"browser-or-node": "^3.0.0",
"date-fns": "^4.1.0",
"js-md5": "^0.8.3",
"jssha": "^3.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.64",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-node-polyfills": "^0.22.0"
},
"exports": {
".": {
"import": "./dist/seven-client.js",
"require": "./dist/seven-client.umd.cjs"
}
},
"files": [
"dist"
],
"homepage": "https://github.com/seven-io/js-client",
"keywords": [
"2fa",
"cnam",
"gateway",
"hlr",
"mnp",
"sms",
"text2speech",
"tts"
],
"license": "MIT",
"main": "dist/seven-client.umd.cjs",
"module": "dist/seven-client.js",
"name": "@seven.io/client",
"peerDependencies": {
"node-fetch": "^2.7.0"
},
"peerDependenciesMeta": {
"node-fetch": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/seven-io/js-client.git"
},
"scripts": {
"build": "cross-env rimraf dist && tsc && vite build",
"dev": "vite",
"document": "typedoc --plugin typedoc-plugin-markdown --out ./md --hideBreadcrumbs --hidePageHeader --hidePageTitle --hideGroupHeadings --disableSources",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"preview": "vite preview",
"test": "jest"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "3.0.2"
}