forked from hotwired/turbo-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "@hotwired/turbo-rails",
"version": "7.1.3",
"description": "The speed of a single-page web application without having to write any JavaScript",
"module": "app/javascript/turbo/index.js",
"main": "app/assets/javascripts/turbo.js",
"files": [
"app/javascript/turbo"
],
"scripts": {
"build": "rollup -c",
"prerelease": "yarn build && git --no-pager diff && echo && npm pack --dry-run && echo && read -n 1 -p \"Look OK? Press any key to publish and commit v$npm_package_version\" && echo",
"release": "npm publish && git commit -am \"$npm_package_name v$npm_package_version\" && git push"
},
"dependencies": {
"@hotwired/turbo": "hotwired/dev-builds#@hotwired/turbo/28a5dc4",
"@rails/actioncable": "^7.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
},
"license": "MIT",
"author": "Basecamp, LLC",
"contributors": [
"David Heinemeier Hansson <david@basecamp.com>",
"Javan Makhmali <javan@javan.us>",
"Sam Stephenson <sstephenson@gmail.com>"
],
"keywords": [
"hotwire",
"turbo",
"rails"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hotwired/turbo-rails.git"
},
"bugs": {
"url": "https://github.com/hotwired/turbo-rails/issues"
},
"homepage": "https://github.com/hotwired/turbo-rails",
"publishConfig": {
"access": "public"
}
}