-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.33 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
{
"name": "indesely",
"description": "IndexedDB with Kysely Style",
"version": "1.0.3",
"author": "Matthew Holder <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "github:6XGate/indesely",
"keywords": [
"indexeddb",
"typescript",
"browser"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run --browser=chromium --typecheck.enabled --coverage",
"tests:watch": "vitest --browser=chromium",
"tests:ui": "vitest --ui --browser=chromium",
"tests:firefox": "vitest run --browser=firefox",
"tests:webkit": "vitest run --browser=webkit",
"tests:complete": "run-s tests:firefox tests:webkit test",
"coverage": "vitest run --browser=chromium --coverage",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint .",
"prettier:fix": "prettier . --write",
"prettier:check": "prettier . --check",
"build": "run-s -l clean compile",
"compile": "tsc -p tsconfig.lib.json",
"clean": "del dist",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepack": "$npm_execpath run build"
},
"files": [
"README.md",
"LICENSE",
"dist/**/*.d.ts",
"dist/**/*.d.cts",
"dist/**/*.d.mts",
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.mjs",
"dist/**/*.js.map",
"dist/**/*.cjs.map",
"dist/**/*.mjs.map"
],
"devDependencies": {
"@eslint/js": "^9.21.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.17.19",
"@vitest/browser": "^3.0.6",
"@vitest/coverage-v8": "3.0.6",
"@vitest/ui": "3.0.6",
"del-cli": "^6.0.0",
"eslint": "^9.21.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-tsdoc": "^0.4.0",
"npm-check-updates": "^17.1.14",
"npm-run-all2": "^7.0.2",
"playwright": "^1.50.1",
"prettier": "^3.5.2",
"radashi": "^12.3.4",
"type-fest": "^4.35.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vitepress": "^1.6.3",
"vitest": "3.0.6"
}
}