-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.56 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": "onesecmail",
"version": "3.0.0",
"description": "Create and receive email in only 1 second.",
"type": "module",
"exports": {
"import": "./lib/index.js",
"types": "./types/index.d.ts"
},
"files": [
"lib",
"types"
],
"scripts": {
"build": "del-cli lib types && tsc -p tsconfig.build.json",
"lint": "eslint --ext .ts --fix .",
"format": "prettier --list-different --write .",
"test": "tsx bin/test.ts",
"release": "np",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"keywords": [
"1secmail",
"api",
"email",
"mail",
"temporary",
"temp"
],
"author": "Kevin Rouchut <[email protected]>",
"repository": "https://github.com/KevinRouchut/OneSecMail",
"license": "MIT",
"dependencies": {
"got": "^14.2.0",
"tiny-typed-emitter": "^2.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@japa/expect": "^3.0.1",
"@japa/runner": "^3.1.1",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"nock": "^13.5.1",
"np": "^9.2.0",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "~5.3.3"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.11.0",
"npm": "10.4.0"
}
}