-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "inertia-adapter-solid",
"version": "0.2.0",
"license": "MIT",
"description": "The SolidJS adapter for Inertia.js",
"contributors": [
"Jorge González <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/iksaku/inertia-adapter-solid.git"
},
"bugs": {
"url": "https://github.com/iksaku/inertia-adapter-solid/issues"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./server": {
"types": "./dist/types/server.d.ts",
"import": "./dist/server.esm.js",
"require": "./dist/server.js"
}
},
"scripts": {
"dev": "./build.js --watch",
"build": "rm -rf dist && ./build.js && tsc --emitDeclarationOnly",
"prepublish": "pnpm build"
},
"dependencies": {
"@inertiajs/core": "^1.0.14",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@solidjs/meta": "^0.29.3",
"@types/node": "^20.11.19",
"esbuild": "^0.20.0",
"esbuild-node-externals": "^1.13.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"solid-js": "^1.8.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@solidjs/meta": "^0.29.3",
"solid-js": "^1.8.0"
}
}