-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"version": "0.0.2",
"name": "inertia-solid-adapter",
"description": "{{desc_of_lib}}",
"license": "MIT",
"author": "{{me}}",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/{{me}}/{{name_of_lib}}.git"
},
"homepage": "https://github.com/{{me}}/{{name_of_lib}}#readme",
"bugs": {
"url": "https://github.com/{{me}}/{{name_of_lib}}/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
},
"require": "./dist/dev.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs"
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "pnpm up -Li",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@inertiajs/core": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"concurrently": "^7.6.0",
"esbuild": "^0.17.4",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.11.0",
"jsdom": "^21.1.0",
"prettier": "2.8.3",
"solid-js": "^1.6.9",
"tsup": "^6.5.0",
"tsup-preset-solid": "^0.1.4",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-solid": "^2.5.0",
"vitest": "^0.28.2"
},
"keywords": [
"solid"
],
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.3.4"
}
}