-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
{
"name": "@dumbjs/quick-hash",
"version": "0.0.7",
"description": "Quick non-cryptographic hash functions for strings",
"bugs": {
"url": "https://github.com/dumbjs/quick-hash"
},
"repository": "dumbjs/quick-hash",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.ts"
},
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./djb2": {
"types": {
"require": "./dist/djb2.d.cts",
"import": "./dist/djb2.d.ts"
},
"require": "./dist/djb2.cjs",
"import": "./dist/djb2.js",
"default": "./dist/djb2.js"
},
"./sdbm": {
"types": {
"require": "./dist/sdbm.d.cts",
"import": "./dist/sdbm.d.ts"
},
"require": "./dist/sdbm.cjs",
"import": "./dist/sdbm.js",
"default": "./dist/sdbm.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"fix": "prettier --write .",
"next": "bumpp",
"prepare": "husky",
"test": "uvu -r tsm",
"test:ci": "c8 npm run test"
},
"nano-staged": {
"*.{js,ts,yml,md,json}": [
"prettier --write "
]
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^1.1.0",
"bumpp": "^9.11.1",
"c8": "^8.0.1",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"prettier": "^3.5.0",
"publint": "^0.3.4",
"tsm": "^2.3.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"uvu": "^0.5.6"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}