-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 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
30
31
32
{
"name": "live_react",
"version": "0.1.0",
"description": "E2E reactivity from React and LiveView",
"license": "MIT",
"module": "./assets/js/live_react/index.js",
"exports": {
".": {
"import": "./assets/js/live_react/index.mjs",
"types": "./assets/js/live_react/index.d.mts"
},
"./server": "./assets/js/live_react/server.mjs",
"./vite-plugin": "./assets/js/live_react/vite-plugin.js"
},
"author": "Baptiste Chaleil <hello@mrdotb.com>",
"repository": {
"type": "git",
"url": "git://github.com/mrdotb/live_react.git"
},
"files": [
"README.MD",
"LICENSE.md",
"package.json",
"assets/js/live_react/*"
],
"devDependencies": {
"prettier": "^3.3.2"
},
"scripts": {
"format": "npx prettier --write ."
}
}