-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
42
43
44
45
46
47
48
{
"name": "@maicol07/inertia-mithril",
"version": "1.0.3",
"description": "The Mithril.js adapter for Inertia.js",
"keywords": [
"mithril",
"mithriljs",
"inertia",
"adapter"
],
"author": "Maicol Battistini <[email protected]> (https://maicol07.it)",
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/maicol072001/10eur"
},
{
"type": "github",
"url": "https://github.com/sponsors/maicol07"
}
],
"repository": "github:maicol07/inertia-mithril",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"dependencies": {
"@inertiajs/core": "^1.0.2",
"mithril": "^2.2.2"
},
"devDependencies": {
"@maicol07/eslint-config": "^2.2.4",
"@types/mithril": "^2.0.12",
"typescript": "^4.9.5"
},
"peerDependencies": {
"mithril": ">=2.0.4"
},
"suggest": {
"mithril-node-render": "Allows you to render your Mithril application on the server (SSR)."
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc"
}
}