-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 875 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 875 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
{
"name": "@hotwired/strada",
"version": "1.0.0-beta1",
"description": "Create fully native controls, driven by your web app.",
"main": "dist/strada.js",
"files": [
"dist/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hotwired/strada-web.git"
},
"keywords": [
"hotwire",
"strada"
],
"author": "37signals LLC",
"contributors": [
"Jay Ohms <jay@37signals.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hotwired/strada-web/issues"
},
"homepage": "https://strada.hotwired.dev",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf build/* dist/*",
"build": "bin/build.js",
"release": "yarn build && npm publish"
},
"devDependencies": {
"esbuild": "^0.17.16"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.2.1"
}
}