-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "turbo-morph",
"version": "0.2.0",
"description": "Morphdom integration for Turbo Streams",
"main": "dist/turbo-morph.js",
"module": "dist/turbo-morph.js",
"unpkg": "dist/turbo-morph.umd.js",
"types": "dist/types/index.d.ts",
"author": "Marco Roth",
"license": "MIT",
"repository": "https://github.com/marcoroth/turbo-morph",
"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",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"concurrently": "^7.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-filesize": "^9.1.1",
"sourcemap": "^0.1.0",
"tslib": "^2.3.1",
"typescript": "^3.9.7",
"vitest": "^0.18.1"
},
"dependencies": {
"morphdom": ">= 2.6, < 2.7"
},
"peerDependencies": {
"@hotwired/turbo": ">= 7.2"
}
}