-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "nuxt-auth-sanctum",
"version": "0.4.0",
"author": "Artem Manchenkov",
"description": "Nuxt module for Laravel Sanctum authentication",
"homepage": "https://manchenkoff.gitbook.io/nuxt-auth-sanctum/",
"repository": {
"type": "git",
"url": "git+https://github.com/manchenkoff/nuxt-auth-sanctum.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "nuxi typecheck",
"validate": "npm run fmt:check && npm run lint && npm run test:types && npm run test",
"release": "npm run validate && npm run prepack && changelogen --release && npm publish && git push"
},
"dependencies": {
"@nuxt/kit": "^3.9.0",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/module-builder": "^0.7.0",
"@nuxt/schema": "^3.9.0",
"@nuxt/test-utils": "^3.9.0",
"@types/node": "^20.11.13",
"changelogen": "^0.5.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"h3": "^1.10.1",
"nitropack": "^2.9.6",
"nuxi": "^3.10.0",
"nuxt": "^3.11.2",
"prettier": "^3.0.3",
"typescript": "^5.4.5",
"vite": "^4.4.9",
"vitest": "^1.2.2",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"vue-tsc": "^2.0.19"
},
"packageManager": "[email protected]"
}