-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "nuxt-nhost",
"version": "1.1.0",
"license": "MIT",
"type": "module",
"repository": "xlanex6/nuxt-nhost",
"contributors": [
{
"name": "Alex Duval <alexduval71@gmail.com>"
}
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"lint": "eslint --ext .js,.ts,.vue .",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "nuxt-module-build && standard-version && git push --follow-tags && npm publish --tag beta"
},
"dependencies": {
"@nhost/nhost-js": "1.1.6",
"@nuxt/kit": "3.0.0-rc.2",
"defu": "6.0.0",
"graphql": "16.4.0"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"nuxt": "^3.0.0-rc.2",
"standard-version": "^9.3.2"
}
}