-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "ohash",
"version": "2.0.11",
"description": "Simple object hashing, serialization and comparison utils.",
"repository": "unjs/ohash",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.mts",
"default": "./dist/utils/index.mjs"
},
"./crypto": {
"node": {
"types": "./dist/crypto/node/index.d.mts",
"default": "./dist/crypto/node/index.mjs"
},
"default": {
"types": "./dist/crypto/js/index.d.mts",
"default": "./dist/crypto/js/index.mjs"
}
}
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"bench": "vitest bench",
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . && prettier -c src test",
"lint:fix": "automd && eslint --fix . && prettier -w src test",
"prepack": "unbuild",
"release": "pnpm test && changelogen --release --push && pnpm publish",
"test": "pnpm lint && vitest run --coverage && pnpm test:types",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"automd": "^0.4.0",
"changelogen": "^0.6.0",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"eslint-config-unjs": "^0.4.2",
"mitata": "^1.0.34",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"unbuild": "^3.5.0",
"vitest": "^3.0.7"
},
"packageManager": "[email protected]"
}