-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "nuxt-marquee",
"version": "1.0.4",
"description": "A lightweight Nuxt 3 module that harnesses the power of CSS animations to create silky smooth marquees.",
"repository": "hanzydev/nuxt-marquee",
"license": "MIT",
"type": "module",
"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": {
"build": "nuxt-module-build build",
"format": "prettier --write ."
},
"dependencies": {
"@nuxt/kit": "^3.10.0",
"vue-fast-marquee": "^1.0.6"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.10.0",
"@types/node": "^20.11.13",
"nuxt": "^3.10.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"keywords": [
"nuxt",
"nuxt-module",
"slider",
"ticker",
"marquee",
"nuxt-marquee"
]
}