-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.46 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": "kiss-crypto",
"type": "module",
"version": "0.3.4",
"description": "",
"author": "",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./hash-password": {
"types": "./dist/hash-password.d.ts",
"import": "./dist/hash-password.js",
"default": "./dist/hash-password.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"hash-password": [
"./dist/hash-password.d.ts"
]
}
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "TZ=UTC vitest",
"build": "mkdir -p dist && rm -rf dist && tsc --build tsconfig.build.json",
"prepack": "yarn build",
"fix": "eslint . --fix && prettier --write .",
"lint": "eslint . && tsc --noEmit",
"size": "size-limit",
"analyze": "size-limit --why"
},
"size-limit": [
{
"path": "dist/*.js",
"limit": "950 kB"
}
],
"dependencies": {
"@noble/ciphers": "0.5.3",
"@noble/hashes": "1.4.0",
"@scure/base": "1.1.7",
"hash-wasm": "4.11.0"
},
"devDependencies": {
"@ocavue/eslint-config": "^1.11.2",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "^18.11.18",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"size-limit": "^11.1.4",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
}
}