forked from formkit/auto-animate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
70
71
72
73
74
75
76
77
{
"name": "@formkit/auto-animate",
"version": "1.0.0-beta.1",
"description": "Add motion to your apps with a single line of code.",
"private": true,
"keywords": [
"animation",
"transition",
"react",
"vue"
],
"type": "module",
"main": "index.mjs",
"module": "index.mjs",
"types": "index.d.ts",
"repository": "/~https://github.com/formkit/auto-animate.git",
"author": "Justin Schroeder <justin@formkit.com>",
"license": "MIT",
"scripts": {
"dev": "cd docs && vite --config=./vite.config.ts",
"build": "node ./.build.mjs",
"build-docs": "cd docs && vite-ssg build --config=./docs/vite.config.ts",
"publish": "node ./.build.mjs --publish",
"cypress:server": "cd docs && npx vite --config=./vite.config.ts --port=5555"
},
"exports": {
"./vue": {
"import": "./vue/index.mjs",
"types": "./vue/index.d.ts"
},
"./react": {
"import": "./react/index.mjs",
"types": "./react/index.d.ts"
},
".": {
"import": "./index.mjs"
}
},
"devDependencies": {
"@formkit/vue": "^1.0.0-beta.8",
"@rollup/plugin-typescript": "^8.3.2",
"@types/node": "^17.0.33",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.9",
"@vitejs/plugin-vue": "^2.3.3",
"@vueuse/head": "^0.7.6",
"brotli-size": "^4.0.0",
"chalk": "^5.0.1",
"cypress": "^9.6.1",
"execa": "^6.1.0",
"pretty-bytes": "^6.0.0",
"prompts": "^2.4.2",
"react": "^18.1.0",
"rollup": "^2.72.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-ssg": "^0.20.0",
"vue": "^3.2.33",
"vue-github-button": "^3.0.3",
"vue-router": "4"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"react": {
"optional": true
}
}
}