-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 870 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
{
"name": "@seanpdoyle/turbo_stream_button",
"private": true,
"type": "module",
"main": "app/assets/javascripts/turbo_stream_button.js",
"module": "app/assets/javascripts/turbo_stream_button.js",
"types": "app/assets/javascripts/turbo_stream_button/index.d.ts",
"files": [
"app/assets/javascripts/**/*"
],
"version": "0.2.2",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"rollup": "^2.75.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.22",
"ts-loader": "^9.1.1",
"tslib": "^2.4.0",
"typescript": "^4.2.4"
},
"dependencies": {
"stimulus": "^2.0.0",
"@hotwired/turbo": "^7.0.0"
},
"scripts": {
"clean": "rm -rf app/assets/javascripts/*",
"build": "tsc --emitDeclarationOnly && rollup -c",
"prepublish": "yarn build"
}
}