-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 1.95 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
87
{
"name": "@zentered/auth0-solid-start",
"version": "0.0.1-dev",
"private": false,
"description": "Auth0 for Solid-Start",
"keywords": [
"solidjs",
"solid-start",
"auth0"
],
"homepage": "https://github.com/zentered/auth0-solid-start#readme",
"bugs": {
"url": "https://github.com/zentered/auth0-solid-start/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/auth0-solid-start.git"
},
"license": "MIT",
"author": "Zentered <hi@zentered.co> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/PatrickHeneise)"
],
"type": "module",
"exports": {
".": {
"require": "./src/index.jsx",
"solid": "./src/index.jsx"
},
"./api/*": "./src/api/*",
"./server": "./src/server/index.js"
},
"main": "src/index.js",
"types": "./src/types/index.d.ts",
"files": [
"src"
],
"scripts": {
"lint": "eslint --fix . --ext .js --ext .jsx",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,md}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"auth0-js": "^9.24.0",
"jose": "^4.15.4"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@solidjs/router": "*",
"@types/auth0-js": "^9.21.5",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-solid": "^0.13.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.9",
"prettier": "^2.8.8"
},
"peerDependencies": {
"@solidjs/router": "^0.8.4",
"solid-js": "^1.8.7",
"solid-start": "^0.3.10"
},
"engines": {
"node": ">=18"
}
}