-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.5 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": "@hypernym/nuxt-anime",
"version": "2.1.1",
"author": "Hypernym Studio",
"description": "Anime module for Nuxt.",
"license": "MIT",
"repository": "hypernym-studio/nuxt-anime",
"homepage": "https://github.com/hypernym-studio/nuxt-anime",
"funding": "https://github.com/sponsors/ivodolenc",
"type": "module",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/module.mjs",
"types": "./dist/types.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"nuxt",
"nuxt-anime",
"nuxt-animejs",
"nuxt-module",
"anime-module",
"nuxt-animations",
"nuxt-anime-module",
"animations",
"animejs",
"anime"
],
"scripts": {
"dev": "nuxt dev playground",
"build": "rolli",
"build:play": "nuxt build playground",
"generate:play": "nuxt generate playground",
"preview:play": "nuxt preview playground",
"bump": "bummp",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js .",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js --fix .",
"format": "prettier --config .config/prettier.config.js --write .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/animejs": "^3.1.7",
"animejs": "^3.2.1"
},
"devDependencies": {
"@types/node": "^20.6.0",
"bummp": "^0.2.0",
"configshare": "^0.1.5",
"eslint": "^8.49.0",
"nuxt": "^3.7.1",
"prettier": "^3.0.3",
"rolli": "^0.6.0",
"typescript": "^5.1.6"
}
}