-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (37 loc) · 942 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
31
32
33
34
35
36
37
38
{
"name": "solid-wire",
"version": "0.2.7",
"description": "Solid Wire is a native SolidJS library for building local-first apps with SolidJS and SolidStart.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pauloevpr/solid-wire.git"
},
"homepage": "https://github.com/pauloevpr/solid-wire",
"bugs": {
"url": "https://github.com/pauloevpr/solid-wire/issues"
},
"contributors": [
{
"name": "Paul Roque",
"url": "https://github.com/pauloevpr"
}
],
"license": "MIT",
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"solid-js": "^1.8.6"
},
"devDependencies": {
"typescript": "^4.5.0",
"vite": "^5.4.8",
"vite-plugin-solid": "^2.9.1",
"solid-js": "^1.8.6"
}
}