-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "@nathanchase/nuxt-dayjs-module",
"version": "1.0.14",
"private": false,
"description": "This is a Nuxt 3 compatible module built with the official Nuxt 3 (module-builder)(https://github.com/nuxt/module-builder) for (dayjs)(https://github.com/iamkun/dayjs/).",
"keywords": [
"dayjs",
"nuxt",
"nuxt3"
],
"homepage": "https://github.com/nathanchase/dayjs#readme",
"bugs": {
"url": "https://github.com/nathanchase/dayjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathanchase/dayjs.git"
},
"license": "MIT",
"author": "Nathan Chase",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"prepack": "nuxt-module-build"
},
"dependencies": {
"@nuxt/kit": "3.13.2",
"dayjs": "^1.11.5"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/node": "22.9.0",
"eslint": "latest",
"nuxt": "^3.0.0-rc.9"
}
}