-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "styled-components-animatecss",
"title": "Styled Components Animatecss",
"description": "Extract and convert keyframes from animate.css into a JavaScript module that can be imported and used with styled-components.",
"version": "1.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nakzyu/styled-components-animatecss.git"
},
"keywords": [
"styled-components",
"animate.css",
"Styled-components with animate.css",
"animate-css-styled-components"
],
"files": [
"/dist"
],
"license": "MIT",
"author": "nakzyu <nakzyu@gmail.com>",
"devDependencies": {
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.3",
"@swc/helpers": "^0.5.11",
"@types/node": "^22.5.0",
"styled-components": "^6.1.12",
"typescript": "^5.4.5"
},
"peerDependencies": {
"styled-components": "*"
},
"scripts": {
"build": "tsc ./build.ts && node build.js && swc index.ts -d dist && tsc",
"prepublishOnly": "yarn build"
}
}