-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.12 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
{
"name": "@privyid/nuauth",
"version": "1.1.0",
"packageManager": "yarn@4.13.0",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
},
"./core": {
"import": "./dist/core/index.mjs",
"types": "./dist/core/index.d.ts"
}
},
"typesVersions": {
"*": {
"core": [
"./dist/core/index.d.ts"
],
"utils": [
"./dist/utils.d.ts"
]
}
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "yarn build",
"build": "nuxt-module-build build",
"dev": "nuxi dev playground",
"lint": "eslint . --ext .js,.vue,.ts --format pretty",
"fix": "yarn lint --fix",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"cookie-es": "^2.0.0",
"defu": "^6.1.2",
"destr": "^2.0.0",
"h3": "^1.6.4",
"html-escaper": "^3.0.3",
"ohash": "^2.0.0",
"requrl": "^3.0.2",
"simple-oauth2": "^5.0.0",
"type-fest": "^4.8.2",
"ufo": "^1.0.1"
},
"devDependencies": {
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.21.2",
"@privyid/eslint-config-persona": "1.2.0",
"@types/html-escaper": "3.0.4",
"@types/node": "22.15.21",
"@types/simple-oauth2": "5.0.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vue/eslint-config-typescript": "13.0.0",
"eslint": "8.57.1",
"eslint-config-standard-with-typescript": "35.0.0",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-align-assignments": "1.1.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "9.33.0",
"nuxt": "3.21.2",
"typescript": "5.8.3"
},
"publishConfig": {
"access": "public"
}
}