-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.28 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.28 KB
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
{
"name": "opfsdb",
"version": "1.0.8",
"description": "Origin private file system DB",
"type": "module",
"keywords": [
"opfs",
"Origin private file system",
"opfs-db",
"opfsdb",
"Origin private file system Database",
"in-browser db",
"in-browser file db",
"in browser database"
],
"homepage": "https://sliterok.github.io/opfs-demo/",
"repository": {
"url": "git+https://github.com/sliterok/opfsdb"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./OPFSDB": {
"import": "./dist/OPFSDB.js",
"require": "./dist/OPFSDB.cjs",
"types": "./dist/OPFSDB.d.ts"
},
"./Strategy": {
"import": "./dist/Strategy.js",
"require": "./dist/Strategy.cjs",
"types": "./dist/Strategy.d.ts"
},
"./DatabaseManager": {
"import": "./dist/DatabaseManager.js",
"require": "./dist/DatabaseManager.cjs",
"types": "./dist/DatabaseManager.d.ts"
},
"./WorkerManager": {
"import": "./dist/WorkerManager.js",
"require": "./dist/WorkerManager.cjs",
"types": "./dist/WorkerManager.d.ts"
},
"./workers/*": {
"import": "./dist/workers/*.js",
"require": "./dist/workers/*.cjs",
"types": "./dist/workers/*.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier --write --ignore-unknown src",
"docs": "typedoc",
"test": "npm run test:typecheck && npm run test:format && npm run test:lint",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:format": "prettier --check --ignore-unknown src",
"test:lint": "eslint . --ignore-pattern dist"
},
"devDependencies": {
"@types/node": "^20.11.30",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-tsconfig-paths": "^4.3.1"
},
"dependencies": {
"cbor-x": "^1.5.8",
"deepmerge": "^4.3.1",
"serializable-bptree": "^3.2.2"
}
}