-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
executable file
·77 lines (77 loc) · 2.01 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
{
"name": "@nuxtjs/color-mode",
"version": "4.0.0",
"description": "Dark and light mode for Nuxt with auto detection",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/color-mode.git"
},
"license": "MIT",
"packageManager": "[email protected]",
"contributors": [
{
"name": "Nuxt Team"
}
],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build && esbuild --minify src/script.js --outfile=dist/script.min.js",
"build": "pnpm run prepack",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"docs": "nuxt dev docs",
"docs:build": "nuxt generate docs",
"lint": "eslint .",
"prepublishOnly": "pnpm run prepack",
"release": "pnpm lint && pnpm test && bumpp",
"test": "vitest run --coverage && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^4.3.1",
"exsolve": "^1.0.8",
"pathe": "^2.0.3",
"pkg-types": "^2.3.0",
"semver": "^7.7.4"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@types/lodash.template": "^4.5.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^4.0.18",
"bumpp": "^10.4.1",
"changelogithub": "^14.0.0",
"esbuild": "^0.27.3",
"eslint": "^10.0.3",
"husky": "9.1.7",
"nuxt": "^4.3.1",
"pkg-pr-new": "^0.0.65",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.18",
"vue-tsc": "^3.2.5"
}
}