-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"name": "replicache-react",
"version": "6.0.0",
"description": "Miscellaneous utilities for using Replicache with React",
"homepage": "https://replicache.dev",
"repository": "github:rocicorp/replicache-react",
"type": "module",
"module": "out/index.js",
"types": "out/index.d.ts",
"exports": "./out/index.js",
"scripts": {
"format": "prettier --write 'src/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"check-format": "prettier --check 'src/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"build": "tsc",
"prepack": "npm run lint && npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@rocicorp/resolver": "^1.0.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitest/browser": "^4.0.14",
"@vitest/browser-playwright": "^4.0.14",
"eslint": "^8.57.1",
"playwright": "^1.57.0",
"prettier": "^3.7.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"replicache": "^15.3.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"files": [
"out/index.js",
"out/index.d.ts"
]
}