forked from Bearologics/DeviceCheckWorker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
{
"name": "js-devicecheck",
"version": "0.1.5",
"description": "A npm module to verify an Apple Device Token against Apple's DeviceCheck Servers.",
"repository": {
"type": "git",
"url": "git+https://github.com/Biscoint/js-devicecheck.git"
},
"type": "module",
"exports": {
".": {
"default": {
"import": "./dist/index.mjs",
"require": "./cjs/index.cjs"
}
}
},
"files": [
"dist",
"cjs"
],
"main": "./cjs/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "unbuild",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"apple",
"ios",
"devicecheck"
],
"author": "AugustoResende (Biscoint.io) and Bearologics UG (haftungsbeschränkt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Biscoint/js-devicecheck/issues"
},
"homepage": "https://github.com/Biscoint/js-devicecheck#readme",
"dependencies": {
"jose": "^4.8.1",
"ohmyfetch": "^0.4.18",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"typescript": "^4.7.3",
"unbuild": "^0.7.4"
}
}