-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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
{
"name": "@gabortorma/nuxt-dayjs-i18n",
"type": "module",
"version": "5.2.18",
"packageManager": "[email protected]+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2",
"description": "Extend dayjs-nuxt plugin with automatic i18n locale switching.",
"license": "MIT",
"repository": {
"url": "git+ssh://[email protected]/GaborTorma/nuxt-dayjs-i18n.git"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"build": "nuxi build playground",
"preview": "nuxi preview playground",
"prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm lint && pnpm test && pnpm prepack && changelogen --release && npm publish --access=public && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"cleanup": "nuxt cleanup && nuxt cleanup playground",
"reset": "pnpm cleanup && pnpm dev:prepare",
"reinstall": "rm -rf node_modules && rm -rf ./playground/node_modules && pnpm install && pnpm reset"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@nuxtjs/i18n": "8.5.5",
"dayjs-nuxt": "2.1.9"
},
"devDependencies": {
"@gabortorma/antfu-eslint-config": "^2.0.5",
"@nuxt/devtools": "^1.5.1",
"@nuxt/eslint": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "3.13.2",
"@nuxt/test-utils": "3.14.2",
"@playwright/test": "^1.47.2",
"@types/node": "^22.7.2",
"changelogen": "^0.5.7",
"nuxt": "3.13.2",
"typescript": "^5.6.2",
"vite-plugin-eslint2": "^4.4.2",
"vitest": "^2.1.1",
"vue": "^3.5.8"
}
}