-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
109 lines (109 loc) · 2.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@formkit/auto-animate",
"version": "0.8.2",
"description": "Add motion to your apps with a single line of code.",
"private": true,
"keywords": [
"animation",
"transition",
"react",
"preact",
"vue",
"angular",
"svelte",
"solid"
],
"type": "module",
"main": "index.mjs",
"module": "index.mjs",
"types": "index.d.ts",
"repository": "https://github.com/formkit/auto-animate.git",
"author": "Justin Schroeder <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cd docs && vite --config=./vite.config.ts",
"build": "node ./build/build.mjs",
"build-docs": "cd docs && vite-ssg build --config=./vite.config.ts",
"publish": "node ./build/build.mjs --publish",
"nuxt:dev": "nuxi dev build/nuxt-playground",
"cypress:open": "cypress open",
"cypress:server": "cd docs && npx vite --config=./vite.config.ts --port=5555"
},
"exports": {
"./vue": {
"types": "./vue/index.d.ts",
"import": "./vue/index.mjs",
"default": "./vue/index.mjs"
},
"./preact": {
"types": "./preact/index.d.ts",
"import": "./preact/index.mjs",
"default": "./preact/index.mjs"
},
"./react": {
"types": "./react/index.d.ts",
"import": "./react/index.mjs",
"default": "./react/index.mjs"
},
"./solid": {
"types": "./solid/index.d.ts",
"import": "./solid/index.mjs",
"default": "./solid/index.mjs"
},
"./angular": {
"types": "./angular/index.d.ts",
"import": "./angular/index.mjs",
"default": "./angular/index.mjs"
},
"./nuxt": {
"types": "./nuxt/module.d.ts",
"import": "./nuxt/module.mjs",
"require": "./nuxt/module.cjs",
"default": "./nuxt/module.mjs"
},
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"default": "./index.mjs"
}
},
"devDependencies": {
"@angular/core": "^13.4.0",
"@formkit/vue": "^1.6.5",
"@nuxt/kit": "^3.12.4",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.12.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.15",
"@types/prismjs": "^1.26.4",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.3",
"@vitejs/plugin-vue": "^5.1.2",
"@vueuse/head": "^2.0.0",
"brotli-size": "^4.0.0",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"cypress": "^9.7.0",
"execa": "^6.1.0",
"jiti": "^1.21.6",
"mlly": "^1.7.1",
"nuxi": "^3.12.0",
"pathe": "^1.1.2",
"preact": "^10.23.2",
"pretty-bytes": "^6.1.1",
"prompts": "^2.4.2",
"react": "^18.3.1",
"rollup": "^3.29.4",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"solid-js": "^1.8.21",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "5.4.1",
"vite-ssg": "^0.23.8",
"vue": "^3.4.38",
"vue-github-button": "^3.1.3",
"vue-router": "^4.4.3"
}
}