-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "animate-css-grid",
"version": "1.5.1",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/main.module.js",
"types": "dist/index.d.ts",
"description": "Buttery smooth, easy transitions for CSS grid",
"homepage": "https://github.com/aholachek/animate-css-grid",
"files": [
"/dist"
],
"keywords": [
"css",
"grid",
"animation",
"transition",
"mutation-observer",
"layout"
],
"sideEffects": false,
"scripts": {
"watch": "parcel serve ./demo",
"build": "parcel build ./src/index.ts",
"prepublishOnly": "yarn run build",
"check-types": "tsc",
"preversion": "npm run check-types"
},
"author": "Alex Holachek",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aholachek/animate-css-grid"
},
"bugs": "https://github.com/aholachek/animate-css-grid/issues",
"devDependencies": {
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"parcel": "^2.8.3",
"typescript": "4.9.5"
},
"dependencies": {
"@popmotion/easing": "^1.0.2",
"@types/lodash.throttle": "^4.1.7",
"framesync": "^6.1.2",
"lodash.throttle": "^4.1.1",
"popmotion": "^8.7.6"
}
}