-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.48 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
{
"name": "@privyid/nuapi",
"version": "0.3.0-alpha.4",
"description": "Nuxt HTTP Client module",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/privy-open-source/nuapi.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
},
"./core": {
"import": "./dist/core.mjs",
"require": "./dist/core.cjs",
"types": "./dist/core.d.ts"
}
},
"typesVersions": {
"*": {
"core": [
"./dist/core.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",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "yarn lint && yarn coverage && yarn prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint . --ext .js,.vue,.ts --format pretty",
"fix": "yarn lint --fix",
"test": "vitest src --config ./vitest.config.ts",
"coverage": "vitest run src --coverage --config ./vitest.config.ts"
},
"dependencies": {
"@nuxt/kit": "^3.7.4",
"axios": "^1.7.2",
"defu": "^6.1.2",
"ofetch": "^1.3.3",
"ufo": "^1.3.1"
},
"devDependencies": {
"@nuxt/eslint-config": "0.5.0",
"@nuxt/module-builder": "0.8.4",
"@nuxt/schema": "3.13.2",
"@nuxt/test-utils": "3.14.2",
"@privyid/eslint-config-persona": "0.27.0",
"@privyid/nhp": "1.0.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-c8": "0.30.1",
"@vue/eslint-config-typescript": "13.0.0",
"axios-mock-adapter": "2.1.0",
"changelogen": "0.5.5",
"eslint": "8.57.0",
"eslint-config-standard-with-typescript": "34.0.1",
"eslint-formatter-pretty": "5.0.0",
"eslint-plugin-align-assignments": "1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-unicorn": "46.0.1",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "9.27.0",
"msw": "2.3.5",
"nuxt": "3.13.2",
"typescript": "5.5.4",
"vitest": "0.30.1"
},
"publishConfig": {
"access": "public"
}
}