-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 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
72
73
74
75
{
"name": "reactjrx",
"private": false,
"version": "0.0.0-development",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"watch": "vite build --watch",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"test": "vitest --typecheck",
"test:ci": "vitest run",
"tsc": "tsc",
"prepare": "husky && husky install",
"check": "npx @biomejs/biome check .",
"format": "npx @biomejs/biome check . --write"
},
"peerDependencies": {
"@tanstack/react-query": "5.x",
"react": "19.x",
"react-dom": "19.x",
"rxjs": "*"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@tanstack/react-query-persist-client": "^5.96.2",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.1.0",
"@types/node": "^24.3.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^5.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup-plugin-node-externals": "^8.0.0",
"rxjs": "^7.8.0",
"semantic-release": "^24.2.2",
"terser": "^5.46.0",
"typescript": "^5.6.2",
"vite": "^7.1.4",
"vite-plugin-babel": "^1.4.1",
"vite-plugin-dts": "^4.2.1",
"vitest": "^4.0.17"
},
"repository": {
"type": "git",
"url": "https://github.com/mbret/reactjrx.git"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true --write"
]
}
}