forked from rocicorp/replicache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.48 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
{
"name": "replicache",
"description": "Offline-First for Every Application",
"version": "6.0.0-beta.2",
"repository": "github:rocicorp/replicache-sdk-js",
"license": "BSL-1.1",
"scripts": {
"test": "web-test-runner src/replicache.test.ts --playwright --browsers chromium firefox webkit",
"test:watch": "web-test-runner src/replicache.test.ts --playwright --browsers chromium firefox webkit --watch",
"format": "prettier --write '{src,sample,perf}/**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{js,jsx,json,ts,tsx,html,css,md}'",
"check-format": "prettier --check '{src,sample,perf}/**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{js,jsx,json,ts,tsx,html,css,md}'",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/ perf/",
"doc": "typedoc src/mod.ts",
"build": "rollup --config rollup.config.js",
"build-dev": "DEV=1 rollup --config rollup.config.js",
"build:watch": "rollup --config rollup.config.js --watch",
"start:diff-server": "bin/diff-server --db=/tmp/diffs serve",
"postinstall": "rm -f node_modules/fetch-mock/esm/client.d.ts && tool/get-deps.sh",
"prepublishOnly": "tool/validate-binaries-for-publish.cjs && npm run lint && npm run get-repc && npm run test && rm -rf out && npm run build && npm run build-dev",
"prepack": "npm run prepublishOnly",
"perf": "node perf/runner.js",
"get-repc": "tool/get-deps.sh && git restore bin/diff-server"
},
"bin": {
"diff-server": "bin/diff-server"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-replace": "^2.3.4",
"@types/mocha": "^8.2.0",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@web/dev-server": "0.1.7",
"@web/dev-server-esbuild": "^0.2.11",
"@web/test-runner": "^0.12.15",
"@web/test-runner-playwright": "^0.8.4",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"benchmark": "^2.1.4",
"eslint": "^7.19.0",
"fetch-mock": "^9.11.0",
"get-port": "^5.1.1",
"playwright": "^1.8.1",
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-copy": "^3.3.0",
"sinon": "^9.2.4",
"typedoc": "^0.20.25",
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^4.1.5"
},
"type": "module",
"module": "out/replicache.js",
"types": "out/replicache.js",
"files": [
"out",
"tool/get-deps.sh"
],
"exports": {
".": "./out/replicache.js",
"./dev": "./out/replicache.dev.js"
}
}