-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 947 Bytes
/
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
{
"name": "phoenix_typed_hook",
"version": "0.18.2",
"description": "Write your Phoenix LiveView client hooks using typed classes",
"main": "priv/static/index.js",
"types": "priv/static/index.d.ts",
"files": [
"priv/static/*"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --sourcemap --platform=node --target=node10 --outdir=priv/static && tsc -p . --emitDeclarationOnly --declaration --outDir priv/static",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guisehn/phoenix_typed_hook.git"
},
"author": "Guilherme Sehn <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/guisehn/phoenix_typed_hook#readme",
"peerDependencies": {
"@types/phoenix_live_view": "^0.15.1"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"esbuild": "^0.15.9",
"jest": "^29.0.3",
"ts-jest": "^29.0.2",
"typescript": "^4.8.3"
}
}