-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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
{
"name": "observable-hooks-mono",
"description": "React hooks for RxJS Observables. Simple, flexible, testable and performant.",
"private": true,
"keywords": [
"react",
"hooks",
"observable",
"rxjs",
"async"
],
"author": "CRIMX<straybugs@gmail.com>",
"license": "MIT",
"scripts": {
"build": "pnpm -F observable-hooks build && pnpm -F example-* build",
"test": "pnpm -F observable-hooks test",
"docs:dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"docs:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"lint": "eslint --ext .ts,.tsx,.js,.mjs . && prettier --check .",
"lint:fix": "eslint --ext .ts,.tsx,.js,.mjs . --fix && prettier -w ."
},
"devDependencies": {
"@types/node": "^20.1.7",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vuepress/plugin-pwa": "^1.9.10",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^10.0.0",
"prettier": "^2.8.4",
"vuepress": "^1.9.10",
"vuepress-plugin-container": "^2.1.5"
},
"peerDependencyRules": {
"ignoreMissing": [
"eslint",
"react",
"react-dom",
"react-test-renderer",
"typescript"
]
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}