-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.47 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.47 KB
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
{
"name": "convex-clerk-solidjs",
"version": "0.1.1",
"description": "Clerk authentication integration for Convex in SolidJS applications",
"type": "module",
"main": "./dist/index/index.js",
"module": "./dist/index/index.js",
"types": "./dist/index/index.d.ts",
"exports": {
".": {
"solid": "./dist/index/index.jsx",
"import": "./dist/index/index.js",
"types": "./dist/index/index.d.ts"
},
"./guards": {
"import": "./dist/guards/index.js",
"types": "./dist/guards/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"keywords": [
"solidjs",
"solid",
"convex",
"clerk",
"auth",
"authentication",
"reactive"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Resonant-Projects/convex-clerk-solidjs.git"
},
"peerDependencies": {
"solid-js": ">=1.6.0",
"convex": ">=1.25.0",
"clerk-solidjs": ">=2.0.0"
},
"peerDependenciesMeta": {
"@solidjs/router": {
"optional": true
}
},
"devDependencies": {
"@solidjs/router": "^0.15.4",
"@solidjs/testing-library": "^0.8.10",
"@types/bun": "latest",
"clerk-solidjs": "^2.0.10",
"convex": "^1.31.7",
"solid-js": "^1.9.11",
"tsup": "^8.5.1",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.9.3"
}
}