-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.56 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
{
"name": "@wix/motion",
"version": "2.1.2",
"description": "High-performance animation toolkit for the web, powering Wix motion presets and tooling.",
"license": "MIT",
"main": "dist/cjs/motion.js",
"module": "dist/es/motion.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/motion.js",
"require": "./dist/cjs/motion.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite dev --open",
"build": "rimraf dist && npm run build:types && vite build",
"build:types": "tsc -p tsconfig.build.json",
"lint": "tsc -p tsconfig.build.json --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"keywords": [
"animation",
"motion",
"web-animations",
"browser",
"effects",
"typescript"
],
"author": {
"name": "wow!Team",
"email": "wow-dev@wix.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/interact.git"
},
"bugs": {
"url": "https://github.com/wix/interact/issues"
},
"homepage": "https://github.com/wix/interact#readme",
"engines": {
"node": ">=24"
},
"dependencies": {
"fastdom": "^1.0.11"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^4.0.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.14"
}
}