-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.87 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
97
98
99
{
"name": "@privyid/pong",
"version": "0.8.0",
"packageManager": "[email protected]",
"description": "Service discovery, Log & Trace module",
"repository": {
"type": "git",
"url": "https://github.com/privy-open-source/pong.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./core/*": "./dist/core/*",
"./nhp": {
"import": "./dist/nhp/index.js",
"types": "./dist/nhp/index.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "yarn build",
"build": "nuxt-module-build build",
"dev": "nuxi dev playground | pino-pretty",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint . --ext .js,.vue,.ts --format pretty",
"fix": "yarn lint --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^4.0.0",
"@nuxt/kit": "^3.13.2",
"body-parser": "^1.20.3",
"browserslist-ua-parser": "^1.0.1",
"dd-trace": "^5.23.0",
"defu": "^6.1.2",
"destr": "^2.0.1",
"fast-content-type-parse": "^2.0.0",
"magic-string": "^0.30.11",
"pino-http": "^10.0.0",
"systeminformation": "^5.23.5",
"uuid": "^11.0.0"
},
"devDependencies": {
"@nuxt/devtools": "1.6.0",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.13.2",
"@nuxt/test-utils": "3.14.4",
"@privyid/eslint-config-persona": "1.0.0-rc.12",
"@privyid/nhp": "1.0.1",
"@privyid/nuapi": "0.3.0-alpha.6",
"@types/body-parser": "1.19.5",
"@types/express": "5.0.0",
"@types/fast-redact": "3.0.4",
"@types/simple-oauth2": "5.0.7",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vue/eslint-config-typescript": "13.0.0",
"changelogen": "0.5.7",
"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": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "9.29.0",
"nuxt": "3.13.2",
"pino-pretty": "11.3.0",
"typescript": "5.6.3",
"vitest": "2.1.3"
},
"peerDependencies": {
"@privyid/nhp": ">=1.0.0",
"@privyid/nuapi": ">=0.3.0-alpha.5"
},
"peerDependenciesMeta": {
"@privyid/nuapi": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}