-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
{
"name": "@straw-hat/react-phoenix",
"version": "0.2.0",
"description": "Integration between React and Phoenix",
"repository": {
"type": "git",
"url": "https://github.com/straw-hat-team/nodejs-monorepo.git",
"directory": "packages/@straw-hat/react-phoenix"
},
"license": "MIT",
"keywords": [
"react",
"hooks",
"elixir",
"phoenix",
"react-hooks",
"straw-hat-team"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prebuild": "yarn run -T rimraf dist",
"build": "yarn prebuild && yarn run -T tsc -p tsconfig.prod.json",
"prepack": "yarn build",
"docs:typedoc": "yarn run -T typedoc"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"dependencies": {
"phoenix": "^1.7.20"
},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@straw-hat/tsconfig": "workspace:*",
"@types/phoenix": "^1.6.6",
"@types/react": "^19.0.1",
"react": "^19.0.0",
"typescript": "^5.7.2"
}
}