-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "synceddb",
"version": "0.1.1",
"description": "Sync your IndexedDB database with a remote REST API",
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"module": "./build/index.js",
"import": "./build/index.js",
"default": "./build/index.cjs"
},
"./with-async-ittr": {
"module": "./with-async-ittr.js",
"import": "./with-async-ittr.js",
"default": "./with-async-ittr.cjs"
},
"./build/*": "./build/*",
"./package.json": "./package.json"
},
"files": [
"build/**",
"with-*",
"CHANGELOG.md"
],
"type": "module",
"scripts": {
"build": "PRODUCTION=1 rollup -c && node --experimental-modules lib/size-report.mjs",
"dev": "rollup -c --watch",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/darrachequesne/synceddb.git"
},
"author": "Damien Arrachequesne",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"conditional-type-checks": "^1.0.5",
"del": "^6.0.0",
"filesize": "^8.0.6",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"rollup": "^2.59.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.1-rc"
},
"keywords": [
"indexeddb",
"idb",
"offline-first"
]
}