-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"name": "cable-streams",
"version": "0.1.0-beta3",
"description": "Extend Turbo Stream with Custom Turbo Stream Actions or CableReady operations",
"main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"author": "Marco Roth",
"license": "MIT",
"repository": "https://github.com/marcoroth/cable-streams",
"sideEffects": false,
"scripts": {
"start": "cd playground && yarn start",
"prebuild": "yarn clean",
"build": "tsc --noEmit false --declaration true --emitDeclarationOnly true --outDir dist/types --jsx react && rollup -c",
"watch": "rollup -wc",
"dev": "concurrently 'yarn run watch' 'yarn run start'",
"clean": "rimraf dist",
"prerelease": "yarn build"
},
"devDependencies": {
"@hotwired/turbo": "^7.2.0-beta.1",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"cable_ready": ">= 5.0.0-pre9",
"concurrently": "^7.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"sourcemap": "^0.1.0",
"tslib": "^2.3.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@hotwired/turbo": ">= 7.2.0-beta.1",
"cable_ready": ">= 5.0.0-pre9"
}
}