-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "and-action",
"version": "0.1.18-beta.0",
"description": "Action Router & Side-kick Form component for Remix apps",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"import": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"import": "./dist/index.cjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
},
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"author": "Herman Geldenhuys",
"repository": {
"url": "https://github.com/hgeldenhuys/and-action",
"type": "git",
"directory": "src/and-action"
},
"scripts": {
"build": "tsc --project tsconfig.json"
},
"keywords": [
"remix"
],
"peerDependencies": {
"@remix-run/react": "^2.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"superjson": "^2.2.1",
"zod": "^3.0.0",
"ajv": "^8.13.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@remix-run/node": "^2.0.1",
"@remix-run/react": "^2.0.1",
"@remix-run/serve": "^2.0.1",
"@remix-run/server-runtime": "^2.0.1",
"@types/prop-types": "^15.7.4",
"@types/react": "^18.x",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint-plugin-import": "^2.22.1",
"prettier": "^3.2.5",
"react": "^18.x",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}