-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 893 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 893 Bytes
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
{
"name": "patcode",
"version": "1.0.1",
"description": "Human-friendly numeric pattern codes for OTP, SMS, 2FA, etc.",
"author": {
"name": "TeaCoder",
"url": "https://teacoder.ru"
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run"
},
"keywords": [
"otp",
"code",
"pin",
"pattern",
"sms",
"2fa"
],
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.14",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^4.0.14"
}
}