-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "react-framage",
"repository": "https://github.com/uspel/react-framage",
"version": "3.0.0",
"description": "Display portions of an image, flipbook animate between them and apply nineslice scaling!",
"author": "Uspel",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"keywords": [
"animation",
"component",
"framage",
"nineslice",
"9-slice",
"react",
"scaling"
],
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/react": "^18.0.35",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"react": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.4.5",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}