-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@productdevbook/animejs-vue",
"type": "module",
"version": "0.2.0",
"description": "Anime.js Vue.js and Nuxt.js integration",
"author": "Mehmet - productdevbook <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbook/animejs-vue/tree/main/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/productdevbook/animejs-vue.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/productdevbook/animejs-vue/issues"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup --dts",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && npm publish",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "eslint --ext .ts,.tsx,.js,.jsx . --fix"
},
"keywords": [],
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"@nuxt/schema": "^3.2.2",
"bumpp": "^8.2.1",
"eslint": "^8.34.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@nuxt/kit": "^3.2.2",
"@types/animejs": "^3.1.7",
"@vue/runtime-core": "3.2.47",
"@vue/runtime-dom": "^3.2.47",
"animejs": "^3.2.1",
"vue": "^3.2.47"
},
"resolutions": {
"vue": "3.2.47",
"vue-bundle-renderer": "1.0.2",
"@vue/runtime-core": "3.2.47",
"@vue/server-renderer": "3.2.47"
}
}