-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
executable file
·81 lines (81 loc) · 2.25 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
{
"name": "@nuxtjs/supabase",
"version": "2.0.5",
"description": "Supabase module for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/supabase.git"
},
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"exports": {
".": {
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare demo && nuxi prepare docs",
"build": "nuxt-module-build build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "nuxi typecheck",
"verify": "pnpm run dev:prepare && pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run dev:build && pnpm build",
"lint:fix": "eslint . --fix",
"release": "pnpm lint && release-it",
"pre:release": "pnpm lint && release-it --preRelease",
"clean": "rm -rf .nuxt .output node_modules docs/.nuxt docs/.data docs/node_modules demo/.nuxt demo/.data demo/node_modules pnpm-lock.yaml .pnpm-store"
},
"dependencies": {
"@supabase/ssr": "^0.10.0",
"@supabase/supabase-js": "^2.101.1",
"defu": "^6.1.6",
"pathe": "^2.0.3"
},
"devDependencies": {
"@nuxt/eslint": "^1.15.2",
"@nuxt/kit": "^4.4.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.2",
"@release-it/conventional-changelog": "^10.0.6",
"@types/node": "^25.5.1",
"changelogen": "^0.6.2",
"consola": "^3.4.2",
"eslint": "^10.1.0",
"nuxt": "^4.4.2",
"release-it": "^19.2.4",
"typescript": "5.6.3",
"vite": "^7.3.1",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6"
},
"resolutions": {
"minimark": "0.2.0",
"typescript": "5.6.3"
},
"release-it": {
"git": {
"commitMessage": "chore(release): release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
}
}
}
}