-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 947 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 947 Bytes
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
{
"name": "@hotwired/hotwire-native-bridge",
"version": "1.2.2",
"description": "Web library for building Bridge Components in Hotwire Native apps.",
"main": "dist/hotwire-native-bridge.js",
"files": [
"dist/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hotwired/hotwire-native-bridge.git"
},
"keywords": [
"hotwire",
"native",
"bridge"
],
"author": "37signals LLC",
"contributors": [
"Jay Ohms <jay@37signals.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hotwired/hotwire-native-bridge/issues"
},
"homepage": "https://native.hotwired.dev",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf build/* dist/*",
"build": "bin/build.js",
"release": "yarn build && npm publish"
},
"devDependencies": {
"esbuild": "^0.25.0"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.2.2"
}
}