-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "@domchekr/domainconnect",
"version": "0.0.1",
"description": "Node client library for Domain Connect protocol.",
"author": "DomChekr",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/domchekr/domainconnect-node/issues",
"homepage": "https://www.domcheckr.com/",
"repository": {
"type": "git",
"url": "https://github.com/domchekr/domainconnect-node.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"format": "npm run format:code",
"format:ci": "npm run format:imports && pnpm run format:code",
"format:code": "prettier -w . --ignore-unknown --cache",
"format:imports": "organize-imports-cli ./tsconfig.json",
"lint": "eslint --cache . --fix",
"test:watch": "jest --watch",
"test": "jest",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"domchekr",
"domain",
"domainconnect"
],
"devDependencies": {
"@eslint/js": "9.12.0",
"@jest/globals": "29.7.0",
"@types/node": "22.7.5",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"organize-imports-cli": "0.10.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.9.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}