-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "@netless/synced-store",
"version": "2.0.9",
"description": "A white-web-sdk plugin for storing shared replayable states and sending/receiving replayable events.",
"author": "netless",
"license": "MIT",
"main": "./dist/synced-store.js",
"module": "./dist/synced-store.mjs",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "vite",
"start": "vite",
"prepublish": "pnpm run build",
"lint": "eslint --ext .ts,.tsx . && prettier --check .",
"types": "cross-env NODE_ENV=production tsc --declaration --emitDeclarationOnly --jsx react --esModuleInterop --outDir dist",
"build": "vite build && npm run types",
"build:dev": "vite build --mode development && npm run types",
"release": "standard-version",
"test": "vitest",
"e2e:page": "vite -c e2e/webpage/vite.config.mjs",
"e2e": "playwright test"
},
"peerDependencies": {
"white-web-sdk": ">= 2.16"
},
"dependencies": {
"lodash-es": "^4.17.21",
"remitter": "^0.3.3",
"side-effect-manager": "^1.2.2",
"value-enhancer": "^3.1.2"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@types/lodash-es": "^4.17.11",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"standard-version": "^9.5.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"white-web-sdk": "^2.16.46"
}
}