-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.6 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
{
"name": "react-avatar-maker",
"version": "1.1.0",
"type": "module",
"description": "A flexible, customizable React library for creating pixel-perfect character avatars with sprite sheets. Perfect for games, social platforms, and creative applications.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"avatar",
"character",
"maker",
"sprite",
"customization",
"pixel-art",
"rpg",
"character-creator",
"avatar-generator",
"sprite-sheet",
"canvas",
"game-dev",
"profile-picture",
"typescript"
],
"author": "OmegaCreations",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OmegaCreations/CharaKit.git"
},
"bugs": {
"url": "https://github.com/OmegaCreations/CharaKit/issues"
},
"homepage": "https://omegacreations.github.io/CharaKit/",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"rollup": "^4.9.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {}
}