-
-
Notifications
You must be signed in to change notification settings - Fork 711
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"name": "y-dexie",
"version": "4.2.1",
"description": "Integration of Y.js with Dexie",
"type": "module",
"module": "dist/y-dexie.js",
"homepage": "https://dexie.org",
"exports": {
".": {
"import": "./dist/y-dexie.js",
"require": false
}
},
"types": "dist/y-dexie.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/dexie/Dexie.js.git"
},
"scripts": {
"test": "just-build test && pnpm run test-unit",
"test-unit": "karma start test/unit/karma.conf.cjs --single-run",
"test:ltcloud": "cross-env LAMBDATEST=true pnpm run test:ltTunnel & sleep 10 && pnpm run test; UNIT_STATUS=$?; kill $(cat tunnel.pid); exit $UNIT_STATUS",
"test:ltTunnel": "node ../../test/lt-local",
"build": "rollup -c tools/build-configs/rollup.config.mjs",
"watch": "rollup -c tools/build-configs/rollup.config.mjs --watch",
"clean": "rm -rf tools/tmp dist test/unit/bundle.*"
},
"just-build": {
"default": [
"rollup -c tools/build-configs/rollup.config.mjs"
],
"test": [
"just-build test-unit"
],
"test-unit": [
"tsc -p test [--watch 'Watching for file changes.']",
"rollup -c tools/build-configs/rollup.test.unit.config.js"
]
},
"author": "david.fahlander@gmail.com",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^18.11.18",
"dexie": "workspace:*",
"dreambase-library": "^1.0.26",
"just-build": "*",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-firefox-launcher": "*",
"karma-qunit": "*",
"lib0": "^0.2.97",
"rollup": "^4.1.4",
"terser": "^5.20.0",
"tslib": "*",
"typescript": "^5.8.3",
"y-protocols": "^1.0.6",
"yjs": "^13.6.27"
},
"peerDependencies": {
"dexie": ">=4.2.0-alpha.1 <5.0.0",
"yjs": "^13.6.27"
}
}