-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.4 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
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
93
94
95
{
"name": "bcrypt-ts",
"version": "9.0.2",
"description": "bcrypt written in typescript",
"keywords": [
"bcrypt",
"bcryptjs"
],
"bugs": {
"url": "https://github.com/Mister-Hope/bcrypt-ts/issues"
},
"license": "MIT",
"author": {
"name": "Mr.Hope",
"email": "mister-hope@outlook.com",
"url": "https://mister-hope.com"
},
"repository": {
"type": "git",
"url": "git://github.com/Mister-Hope/bcrypt-ts.git"
},
"files": [
"dist"
],
"type": "module",
"browser": "./dist/browser.js",
"types": "./dist/node.d.ts",
"exports": {
".": {
"types": "./dist/node.d.ts",
"browser": "./dist/browser.js",
"node": "./dist/node.js",
"default": "./dist/node.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"default": "./dist/browser.js"
},
"./node": {
"types": "./dist/node.d.ts",
"default": "./dist/node.js"
}
},
"scripts": {
"bench": "vitest bench",
"build": "tsdown",
"changelog": "conventional-changelog -p conventionalcommits",
"clean": "rimraf dist",
"dev": "tsdown -w",
"lint": "oxlint --fix --deny-warnings --report-unused-disable-directives && oxfmt",
"lint:check": "oxlint --deny-warnings --report-unused-disable-directives && oxfmt --check",
"prepare": "husky",
"prepublish": "pnpm run clean && pnpm run build",
"test": "vitest --coverage"
},
"devDependencies": {
"@codecov/rollup-plugin": "2.0.1",
"@mr-hope/tsconfig": "0.0.4",
"@types/node": "22.20.1",
"@vitest/coverage-istanbul": "5.0.0",
"conventional-changelog": "8.1.3",
"conventional-changelog-conventionalcommits": "10.4.0",
"husky": "9.1.7",
"nano-staged": "1.0.2",
"oxc-config-hope": "0.3.13",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"oxlint-tsgolint": "7.0.2001",
"picocolors": "1.1.1",
"rimraf": "6.1.3",
"tsdown": "0.23.0",
"typescript": "7.0.2",
"unrun": "0.3.1",
"vitest": "5.0.0"
},
"nano-staged": {
"**/*": "oxfmt --no-error-on-unmatched-pattern",
"*.{js,ts}": "oxlint --fix --deny-warnings --report-unused-disable-directives"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.3.4",
"onFail": "download"
},
"runtime": {
"name": "node",
"version": "^22.22.0 || ^24.20.0 || ^26.6.0",
"onFail": "error"
}
},
"engines": {
"node": ">=22"
}
}