-
Notifications
You must be signed in to change notification settings - Fork 448
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.2 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.2 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
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
{
"name": "@clerk/nuxt",
"version": "2.0.6",
"description": "Clerk SDK for Nuxt",
"keywords": [
"clerk",
"typescript",
"vue",
"nuxt",
"auth",
"authentication",
"passwordless",
"session",
"jwt"
],
"homepage": "https://clerk.com/",
"bugs": {
"url": "https://github.com/clerk/javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/javascript.git",
"directory": "packages/nuxt"
},
"license": "MIT",
"author": "Clerk",
"type": "module",
"exports": {
".": {
"types": "./dist/module.d.ts",
"default": "./dist/module.js"
},
"./server": {
"types": "./dist/runtime/server/index.d.ts",
"default": "./dist/runtime/server/index.js"
},
"./components": {
"types": "./dist/runtime/components/index.d.ts",
"default": "./dist/runtime/components/index.js"
},
"./composables": {
"types": "./dist/runtime/composables/index.d.ts",
"default": "./dist/runtime/composables/index.js"
},
"./errors": {
"types": "./dist/runtime/errors.d.ts",
"default": "./dist/runtime/errors.js"
},
"./webhooks": {
"types": "./dist/runtime/webhooks.d.ts",
"default": "./dist/runtime/webhooks.js"
},
"./types": "./dist/runtime/types/index.d.ts"
},
"main": "./dist/module.js",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"dev:pub": "pnpm dev -- --env.publish",
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src",
"lint:attw": "attw --pack . --profile esm-only",
"lint:publint": "publint",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/vue": "workspace:^",
"@nuxt/kit": "^4.1.3",
"@nuxt/schema": "^4.1.3",
"h3": "^1.15.4"
},
"devDependencies": {
"nuxt": "^4.1.2",
"typescript": "catalog:repo",
"vue": "catalog:repo"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
}
}