This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.4 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
{
"name": "nuxt-full-static",
"version": "0.2.1",
"license": "MIT",
"repository": "danielroe/nuxt-full-static",
"keywords": [
"nuxt",
"module",
"nuxt-module",
"static",
"ssg"
],
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "pnpm nuxt-module-build --stub && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .",
"lint:all:prettier": "pnpm lint:prettier \"{src,test}/**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"prepack": "pnpm build",
"prepare": "husky install",
"prepublishOnly": "pnpm lint && pnpm test && pinst --disable",
"release": "release-it",
"test": "vitest run",
"test:types": "tsc --noEmit",
"postinstall": "husky install",
"postpublish": "pinst --enable"
},
"dependencies": {
"@nuxt/kit": "3.0.0-rc.8",
"pathe": "^1.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "^0.1.7",
"@nuxt/schema": "npm:@nuxt/schema-edge@3.0.0-rc.9-27702110.abd5dc5",
"@nuxt/test-utils": "3.0.0-rc.8",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@release-it/conventional-changelog": "^7.0.0",
"@types/node": "^18.7.2",
"@vitest/coverage-c8": "^0.22.1",
"c8": "^8.0.0",
"conventional-changelog-conventionalcommits": "^6.1.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"expect-type": "^0.13.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nuxt": "npm:nuxt3@3.0.0-rc.9-27702110.abd5dc5",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"release-it": "^15.4.0",
"typescript": "^5.1.6",
"vitest": "^0.22.1",
"vue": "^3.2.37"
},
"resolutions": {
"nuxt-full-static": "link:."
},
"packageManager": "pnpm@8.6.8",
"volta": {
"node": "18.12.0"
}
}