-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 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
{
"name": "@zxcvbn-ts/dictionary-compression",
"version": "4.0.0-beta.2",
"type": "commonjs",
"exports": {
"./compress": {
"import": {
"types": "./dist/compress.d.mts",
"default": "./dist/compress.mjs"
},
"require": {
"types": "./dist/compress.d.ts",
"default": "./dist/compress.cjs"
},
"default": "./dist/compress.cjs"
},
"./decompress": {
"import": {
"types": "./dist/decompress.d.mts",
"default": "./dist/decompress.mjs"
},
"require": {
"types": "./dist/decompress.d.ts",
"default": "./dist/decompress.cjs"
},
"default": "./dist/decompress.cjs"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint --ext .ts --fix --cache .",
"typecheck": "tsc --noEmit"
},
"description": "dictionary-compression helper for zxcvbn-ts language packages",
"license": "MIT",
"homepage": "https://github.com/zxcvbn-ts/dictionary-compression",
"repository": {
"type": "git",
"url": "https://github.com/zxcvbn-ts/dictionary-compression.git"
},
"author": "zxcvbn-ts",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
},
"devDependencies": {
"@types/jest": "29.5.13",
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-webpack": "0.13.9",
"eslint-plugin-compat": "6.0.1",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"semantic-release": "24.1.2",
"typescript": "5.6.2",
"tsup": "8.3.0"
},
"keywords": [
"zxcvbn-ts",
"language",
"compression",
"decompression"
]
}