-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.3 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": "@birchill/jpdict-idb",
"version": "2.6.1",
"description": "Download and lookup jpdict data using IndexedDB",
"author": "Brian Birtles",
"scripts": {
"build": "tsup",
"test": "playwright-test",
"prepublishOnly": "pinst --disable && tsup",
"preinstall": "npx --yes only-allow pnpm",
"postinstall": "husky",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birchill/jpdict-idb.git"
},
"bugs": {
"url": "https://github.com/birchill/jpdict-idb/issues"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"homepage": "https://github.com/birchill/jpdict-idb#readme",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@birchill/json-equalish": "^1.1.2",
"@birchill/normal-jp": "^1.5.2",
"idb": "^8.0.0",
"superstruct": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@release-it/conventional-changelog": "9.0.3",
"@types/chai": "5.0.1",
"@types/chai-datetime": "1.0.0",
"@types/chai-like": "1.1.3",
"@types/fetch-mock": "7.3.8",
"@types/mocha": "10.0.10",
"@types/node": "20.17.9",
"@types/sinon": "17.0.3",
"@typescript-eslint/parser": "8.16.0",
"chai": "5.1.2",
"chai-datetime": "1.8.1",
"chai-like": "1.1.3",
"eslint": "9.15.0",
"fetch-mock": "12.2.0",
"globals": "15.12.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"pinst": "3.0.0",
"playwright-test": "14.1.7",
"prettier": "3.4.1",
"process": "0.11.10",
"release-it": "17.10.0",
"sinon": "19.0.2",
"ts-loader": "9.5.1",
"tslib": "2.8.1",
"tsup": "8.3.5",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"util": "0.12.5",
"webpack": "5.96.1"
},
"overrides": {
"conventional-changelog-conventionalcommits": "^8.0.0"
},
"lint-staged": {
"*.{js,ts,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
}
}