-
-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.41 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.41 KB
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
110
111
112
113
114
115
116
117
{
"name": "@formkit/auto-animate",
"version": "0.9.0",
"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 <justin@formkit.com>",
"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",
"release": "bumpp && node ./build/build.mjs --publish",
"nuxt:dev": "nuxi dev build/nuxt-playground",
"playwright:install": "pnpm exec playwright install",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed --project=chromium",
"test:e2e:ui": "playwright test --ui",
"test:e2e:leak": "LEAK_STRICT=1 playwright test -g memory --project=chromium",
"test:e2e:visual": "VISUAL=1 playwright test -g 'Visual:' --project=chromium"
},
"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": "^17.1.0",
"@formkit/vue": "^1.6.5",
"@nuxt/kit": "^3.12.4",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.12.4",
"@playwright/test": "^1.47.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.15",
"@types/prismjs": "^1.26.4",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vueuse/head": "^2.0.0",
"brotli-size": "^4.0.0",
"bumpp": "^10.2.3",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"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": "^19.0.0",
"rollup": "^4.21.0",
"shx": "^0.3.4",
"solid-js": "^1.8.21",
"tslib": "^2.6.3",
"typescript": "^5.9.2",
"unbuild": "^2.0.0",
"vite": "^7.0.0",
"vite-ssg": "^28.1.0",
"vue": "^3.5.0",
"vue-github-button": "^3.1.3",
"vue-router": "^4.4.3",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}