-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "@hypernym/nuxt-gsap",
"version": "2.4.3",
"author": "Hypernym Studio",
"description": "GSAP module for Nuxt.",
"license": "MIT",
"repository": "hypernym-studio/nuxt-gsap",
"homepage": "https://github.com/hypernym-studio/nuxt-gsap",
"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-gsap",
"nuxt-module",
"gsap-module",
"nuxt-animations",
"nuxt-gsap-module",
"animations",
"gsap"
],
"scripts": {
"dev": "nuxt dev playground",
"build": "hyperbundler",
"build:play": "nuxt build playground",
"generate:play": "nuxt generate playground",
"preview:play": "nuxt preview playground",
"lint": "eslint -c .config/eslint.config.js .",
"lint:fix": "eslint -c .config/eslint.config.js --fix .",
"format": "prettier --config .config/prettier.config.js --write .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"gsap": "^3.12.5"
},
"devDependencies": {
"@hypernym/bundler": "^0.9.3",
"@hypernym/eslint-config": "^3.0.2",
"@hypernym/prettier-config": "^3.0.1",
"@types/node": "^22.5.0",
"eslint": "^9.9.1",
"nuxt": "^3.13.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}