-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "nuxt-splitty",
"version": "0.0.11",
"description": "Build your Nuxt 3 application based on the Micro Services architecture",
"license": "OSL-3.0",
"type": "module",
"files": [
"src"
],
"exports": {
".": "./src/module.ts"
},
"main": "./src/module.ts",
"types": "./src/module.ts",
"scripts": {
"dev": "THEME_ENV_PATH=env/.env-default nuxi dev playground",
"dev:build": "THEME_ENV_PATH=env/.env-default nuxi build playground",
"build:docs": "cd docs && pnpm build",
"publish:docs": "yarn build:docs && yarn --cwd docs version --no-git-tag-version --new-version $npm_package_version && yarn --cwd docs publish --new-version $npm_package_version",
"prepublishOnly": "(if-env PUBLISH_DOCS=true && yarn publish:docs) || echo skip docs publish",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/gitart-group/nuxt-splitty.git",
"directory": "."
},
"author": {
"name": "Mykhailo Kryvoruchko",
"email": "[email protected]"
},
"peerDependencies": {
"@nuxtjs/i18n": "^8.0.0-beta.2",
"vue-i18n": "^9.3.0-beta.6",
"vue-router": "^4.0.14"
},
"dependencies": {
"@antfu/utils": "^0.6.0",
"@nuxt/kit": "^3.0.0-rc.12",
"consola": "^2.15.3",
"deepmerge": "^4.2.2",
"defu": "^6.1.0",
"fs-extra": "^10.1.0",
"json5": "^2.2.1",
"recursive-readdir-async": "^1.2.1",
"ufo": "^0.8.4"
},
"devDependencies": {
"@gitart/eslint-config-vue": "^0.2.0",
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"eslint": "^8.26.0",
"nuxt": "3.0.0-rc.12",
"typescript": "^4.7.2"
}
}