forked from thunder-id/javascript-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.65 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@thunderid/nuxt",
"version": "1.0.3",
"description": "Nuxt SDK for ThunderID",
"keywords": [
"thunderid",
"nuxt",
"nuxtjs",
"ssr"
],
"homepage": "https://github.com/thunder-id/javascript-sdks/tree/main/packages/nuxt#readme",
"bugs": {
"url": "https://github.com/thunder-id/thunderid/issues"
},
"author": "The ThunderID Authors",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/module.mjs",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./server": {
"types": "./dist/runtime/server/index.d.ts",
"import": "./dist/runtime/server/index.js"
},
"./errors": {
"types": "./dist/runtime/errors/index.d.ts",
"import": "./dist/runtime/errors/index.js"
},
"./utils": {
"types": "./dist/runtime/utils/index.d.ts",
"import": "./dist/runtime/utils/index.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"server": [
"./dist/runtime/server/index.d.ts"
],
"errors": [
"./dist/runtime/errors/index.d.ts"
],
"utils": [
"./dist/runtime/utils/index.d.ts"
]
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/thunder-id/javascript-sdks",
"directory": "packages/nuxt"
},
"scripts": {
"build": "nuxt module-build prepare && nuxt module-build build",
"clean": "pnpm clean:dist && pnpm clean:node_modules",
"clean:dist": "rimraf dist .nuxt",
"clean:node_modules": "rimraf node_modules",
"format:check": "prettier --check --cache .",
"format:fix": "prettier --write --cache .",
"lint": "nuxt prepare && eslint .",
"lint:fix": "nuxt prepare && eslint . --fix",
"test": "vitest run --passWithNoTests",
"typecheck": "nuxt module-build prepare && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "3.21.11",
"@thunderid/browser": "workspace:^",
"@thunderid/node": "workspace:^",
"@thunderid/vue": "workspace:^",
"defu": "6.1.5",
"jose": "catalog:"
},
"devDependencies": {
"@nuxt/devtools": "3.4.1",
"@nuxt/module-builder": "1.0.1",
"@nuxt/schema": "3.21.11",
"@nuxt/test-utils": "3.17.2",
"@thunderid/eslint-plugin": "catalog:",
"@thunderid/prettier-config": "catalog:",
"@types/node": "catalog:",
"eslint": "catalog:",
"h3": "1.15.11",
"nuxt": "3.21.11",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"nuxt": ">=3.10.0",
"vue": ">=3.5.0"
},
"publishConfig": {
"access": "public"
}
}