-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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": "@swan-io/indexed-db",
"version": "0.4.4",
"license": "MIT",
"description": "A resilient, Future-based key-value store for IndexedDB",
"author": "Mathieu Acthernoene <[email protected]>",
"homepage": "https://github.com/swan-io/indexed-db",
"repository": {
"type": "git",
"url": "git+https://github.com/swan-io/indexed-db.git"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"idb",
"indexed-db",
"indexeddb",
"key-value",
"keyval",
"store",
"storage",
"boxed",
"future"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "yarn clean && microbundle -f cjs,es",
"clean": "rm -rf dist",
"dev": "microbundle watch",
"format": "prettier '**/*' -u -w",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext ts ./src",
"test:install-deps": "playwright install --with-deps chromium firefox webkit",
"test:chromium": "BROWSER=chromium vitest run",
"test:firefox": "BROWSER=firefox vitest run",
"test:webkit": "BROWSER=webkit vitest run",
"test": "yarn test:chromium && yarn test:firefox && yarn test:webkit",
"test:ci": "CI=true yarn test",
"prepack": "yarn typecheck && yarn lint && yarn test:chromium && yarn build"
},
"browserslist": [
">0.2%",
"not op_mini all",
"not dead",
"safari >= 12"
],
"prettier": {
"trailingComma": "all",
"plugins": [
"prettier-plugin-organize-imports"
]
},
"dependencies": {
"@swan-io/boxed": "^2.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitest/browser": "^1.3.1",
"eslint": "^8.57.0",
"microbundle": "^0.15.1",
"playwright": "^1.42.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}