forked from Valian/live_vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 776 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 776 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
{
"name": "live_vue",
"version": "0.1.0",
"description": "E2E reactivity for Vue and LiveView",
"license": "MIT",
"author": "Jakub Skałecki <jakub@skalecki.dev>",
"module": "./assets/js/live_vue/index.mjs",
"scripts": {
"format": "npx prettier --write assets"
},
"devDependencies": {
"prettier": "2.8.7"
},
"exports": {
"./vitePlugin": "./assets/js/live_vue/vitePlugin.js",
"./server": "./assets/js/live_vue/server.mjs",
".": "./assets/js/live_vue/index.mjs"
},
"repository": {
"type": "git",
"url": "git://github.com/Valian/live_vue.git"
},
"files": [
"README.md",
"LICENSE.md",
"package.json",
"assets/js/live_vue/*"
]
}