-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@matters/passphrases",
"version": "0.0.1-alpha.9",
"description": "",
"author": "https://github.com/thematters",
"homepage": "https://github.com/thematters/passphrases",
"repository": {
"type": "git",
"url": "[email protected]:thematters/passphrases.git"
},
"keywords": [
"passphrases",
"memorable password",
"diceware"
],
"engines": {
"node": ">=20.0"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"require": {
"node": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"./dict": {
"types": "./dist/dict.d.ts",
"import": {
"node": "./dist/dict.js",
"default": "./dist/dict.js"
},
"require": {
"node": "./dist/dict.cjs",
"default": "./dist/dict.cjs"
}
}
},
"files": [
"dist",
"corpus/dict.json"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --clean=false",
"build:dict": "node --loader ts-node/esm --experimental-specifier-resolution=node ./bin/build-dict.ts",
"shuffle:dict": "node --loader ts-node/esm --experimental-specifier-resolution=node ./bin/shuffle-dict.ts",
"format": "prettier --write \"{src,}/**/*.{ts,tsx,json}\"",
"lint": "eslint",
"test": "vitest --run",
"prepare": "husky install",
"benchmark": "node --loader ts-node/esm --experimental-specifier-resolution=node ./bin/estimate-memory-usage.ts"
},
"devDependencies": {
"@types/node": "^20.3.2",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"object-sizeof": "^2.6.3",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.1.3",
"vitest": "^0.32.2"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"base64url": "^3.0.1"
}
}