This repository was archived by the owner on Apr 29, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.29 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.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
{
"name": "nuxt-time",
"version": "1.0.3",
"license": "MIT",
"description": "Safely render local dates and times on the server with Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/danielroe/nuxt-time.git"
},
"keywords": [
"nuxt",
"module",
"nuxt-module",
"date"
],
"author": {
"name": "Daniel Roe <daniel@roe.dev>",
"url": "https://github.com/danielroe"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
"*": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm dev:prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "simple-git-hooks && pnpm nuxt-module-build build --stub && pnpm nuxt-module-build prepare && nuxi prepare playground",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi generate docs",
"lint": "eslint .",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && pnpm publish",
"test": "vitest run --coverage",
"test:types": "vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.14.159"
},
"devDependencies": {
"@nuxt/eslint-config": "1.0.0",
"@nuxt/module-builder": "1.0.1",
"@nuxt/test-utils": "3.17.2",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "3.1.2",
"@vue/test-utils": "2.4.6",
"bumpp": "10.0.1",
"changelogithub": "13.12.1",
"eslint": "9.25.1",
"happy-dom": "17.4.4",
"knip": "5.38.2",
"lint-staged": "15.2.10",
"magic-regexp": "0.8.0",
"nuxt": "3.17.1",
"playwright": "1.48.2",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"unbuild": "3.0.0",
"vitest": "3.1.2",
"vue": "3.5.13",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"nuxt": ">=3.12.0"
},
"resolutions": {
"@nuxt/kit": "3.17.1",
"@nuxt/schema": "3.17.1",
"nuxt-time": "link:.",
"vue": "3.5.13"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"packageManager": "pnpm@10.7.0"
}