-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.04 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
83
84
85
86
87
88
89
90
91
92
{
"name": "foronce",
"version": "0.0.6",
"description": "The OTP Library",
"repository": "[email protected]:dumbjs/foronce.git",
"license": "MIT",
"author": "Reaper <[email protected]>",
"type": "module",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./base32": {
"types": {
"import": "./dist/base32.d.mts",
"require": "./dist/base32.d.cts"
},
"import": "./dist/base32.mjs",
"require": "./dist/base32.cjs"
},
"./universal": {
"types": {
"import": "./dist/universal/universal.d.mts",
"require": "./dist/universal/universal.d.cts"
},
"import": "./dist/universal/universal.mjs",
"require": "./dist/universal/universal.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "unbuild",
"fix": "prettier --write .",
"next": "bumpp",
"prepare": "husky install",
"size": "sizesnap",
"test": "uvu -r tsm tests",
"test:ci": "c8 uvu -r tsm tests "
},
"keywords": [
"otp",
"node",
"totp",
"crypto"
],
"lint-staged": {
"*.{js,css,md,json}": "prettier --write"
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^1.0.0",
"@types/node": "^20.10.8",
"buffer": "^6.0.3",
"bumpp": "^9.2.0",
"c8": "^8.0.1",
"esm": "^3.2.25",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.7.1",
"publint": "^0.2.7",
"sizesnap": "^0.2.1",
"tsm": "^2.3.0",
"unbuild": "^2.0.0",
"uvu": "^0.5.6"
},
"publishConfig": {
"access": "public"
},
"sizesnap": {
"files": [
"dist/*.dts",
"dist/*.ts",
"dist/*.js",
"dist/*.cjs"
]
},
"dependencies": {
"uncrypto": "^0.1.3"
}
}