-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.29 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "nuxt-toc",
"version": "3.0.0",
"description": "Table of Contents component for Nuxt Content (v2 and v3)",
"repository": {
"type": "git",
"url": "git+https://github.com/thaikolja/nuxt-toc.git"
},
"homepage": "https://thaikolja.github.io/nuxt-toc/",
"bugs": {
"url": "https://github.com/thaikolja/nuxt-toc/issues"
},
"author": "thaikolja",
"contributors": [
"Hanyu Jie",
"Kolja Nolte"
],
"keywords": [
"nuxt",
"nuxt-module",
"nuxt-content",
"nuxt4",
"content",
"toc",
"table-of-contents",
"markdown",
"scroll-spy",
"documentation"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css",
"**/*.vue"
],
"scripts": {
"prepack": "nuxt-module-build prepare && nuxt-module-build build",
"prepublishOnly": "npm run check && npm run prepack",
"dev": "npm run dev:v3",
"dev:v3": "nuxi dev playgrounds/content-v3 --port 3000",
"dev:v2": "nuxi dev playgrounds/content-v2 --port 3001",
"dev:build": "npm run dev:build:v3 && npm run dev:build:v2",
"dev:build:v3": "nuxi build playgrounds/content-v3",
"dev:build:v2": "nuxi build playgrounds/content-v2",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && npm run playgrounds:install && npm run playgrounds:prepare",
"playgrounds:install": "npm install --prefix playgrounds/content-v3 && npm install --prefix playgrounds/content-v2",
"playgrounds:prepare": "nuxi prepare playgrounds/content-v3 && nuxi prepare playgrounds/content-v2",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "npm run check && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:types": "vue-tsc --noEmit",
"check": "npm run lint && npm run format:check && npm run test"
},
"dependencies": {
"@nuxt/kit": ">=3.16.0 <5.0.0"
},
"peerDependencies": {
"@nuxt/content": "^2.0.0 || ^3.0.0",
"nuxt": "^3.16.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"@nuxt/content": {
"optional": true
}
},
"devDependencies": {
"@nuxt/devtools": "^3.4.1",
"@nuxt/eslint-config": "^1.17.0",
"@nuxt/module-builder": "^1.0.3",
"@nuxt/schema": "^4.5.2",
"@nuxt/test-utils": "^4.1.0",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^4.1.0",
"changelogen": "^0.6.2",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.0",
"happy-dom": "^20.11.2",
"jiti": "^2.6.0",
"nuxt": "^4.5.2",
"prettier": "^3.6.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.3",
"vitest": "^4.1.0",
"vue": "^3.5.41",
"vue-tsc": "^3.3.9"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}