-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.67 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
88
89
90
91
92
93
94
95
96
{
"name": "clerk-solid",
"version": "0.0.2",
"description": "Clerk Community SDK for Solid.js",
"license": "MIT",
"author": "Pantelis Eleftheriadis",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/panteliselef/clerk-solid.git"
},
"homepage": "https://github.com/panteliselef/clerk-solid",
"bugs": {
"url": "https://github.com/panteliselef/clerk-solid/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup --onSuccess \"pnpm lint:types\"",
"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}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li",
"changeset": "changeset",
"release": "changeset publish && git push --follow-tags",
"version:snapshot": "changeset version --snapshot snapshot",
"release:snapshot": "changeset publish --tag snapshot --no-git-tag"
},
"peerDependencies": {
"@solidjs/router": "^0.13.6",
"solid-js": "^1.6.0"
},
"devDependencies": {
"@solidjs/router": "^0.13.6",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"concurrently": "^8.2.2",
"esbuild": "^0.21.3",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"jsdom": "^24.0.0",
"prettier": "3.0.0",
"solid-js": "^1.8.17",
"tsup": "^8.0.2",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0"
},
"keywords": [
"solid",
"auth",
"authentication",
"clerk"
],
"packageManager": "pnpm@9.1.1",
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@changesets/cli": "^2.27.6",
"@clerk/shared": "^2.2.2",
"@clerk/types": "^4.6.0",
"@nanostores/solid": "^0.4.2"
},
"browser": {},
"publishConfig": {
"access": "public"
}
}