-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "remix-use-async-fetcher",
"type": "module",
"version": "0.0.1",
"description": "Utilities to have an async fetch function in Remix apps",
"packageManager": "[email protected]",
"engines": {
"node": ">= 18"
},
"scripts": {
"attw": "pnpx @arethetypeswrong/cli --profile esm-only --pack .",
"build": "tsc -b",
"check": "pnpm lint && pnpm build && pnpm attw",
"dev": "pnpm install && cd demo && pnpm install && pnpm dev",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:eslint": "eslint --max-warnings=0 .",
"lint:prettier": "prettier --write .",
"prepare": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerbos/remix-use-async-fetcher.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/cerbos/remix-use-async-fetcher/issues"
},
"author": "Cerbos <[email protected]> (https://cerbos.dev)",
"license": "Apache-2.0",
"exports": {
".": {
"default": "./build/index.js"
}
},
"types": "./build/index.d.ts",
"files": [
"build/**/*.d.ts",
"build/**/*.d.ts.map",
"build/**/*.js",
"build/**/*.js.map",
"src/**/*.ts"
],
"keywords": [
"Cerbos",
"React",
"hooks",
"remix",
"use async fetcher",
"async fetcher"
],
"peerDependencies": {
"@remix-run/react": ">=2.0.0",
"react": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@remix-run/react": "2.15.0",
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "2.0.5",
"@types/react": "18.2.67",
"eslint": "9.15.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "15.12.0",
"prettier": "3.4.0",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@ungap/with-resolvers": "^0.1.0"
}
}