-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"version": "0.0.1",
"name": "@authorizerdev/authorizer-solidjs",
"description": "Authorizer SolidJs SDK to implement authentication in your SolidJs application",
"license": "MIT",
"author": "Helio Alves",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/authorizerdev/authorizer-solidjs.git"
},
"homepage": "https://github.com/authorizerdev/authorizer-solidjs#readme",
"bugs": {
"url": "https://github.com/authorizerdev/authorizer-solidjs/issues"
},
"private": false,
"sideEffects": false,
"type": "module",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"solid": "./dist/source/index.jsx",
"import": "./dist/esm/index.js",
"browser": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js"
}
},
"scripts": {
"dev": "vite serve dev",
"test": "echo \"test not setup\"",
"build": "rollup -c",
"prepublishOnly": "pnpm build",
"format": "prettier -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"update-deps": "taze -w && pnpm i",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@authorizerdev/authorizer-js": "^1.1.0"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-plugin-solid": "^0.7.3",
"prettier": "2.7.1",
"rollup": "^2.79.0",
"rollup-preset-solid": "^1.4.0",
"solid-js": "^1.5.5",
"taze": "^0.8.0",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-plugin-solid": "^2.3.3"
},
"keywords": [
"solid"
],
"packageManager": "[email protected]"
}