-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "@ga1az/react-pixel-motion",
"author": "Ga1az",
"private": false,
"version": "0.0.18",
"description": "A React component for animating sprites with pixelated motion",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"homepage": "https://react-pixel-motion.ga1az.com/",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"dev": "bun ./index.html",
"build": "bun run build.ts && ls -l dist/index.min.js && bun run generate-types",
"publish": "npm publish --access public",
"generate-types": "tsc -d ./lib/index.tsx --outDir dist --emitDeclarationOnly > /dev/null"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ga1az/react-pixel-motion.git"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"bun-plugin-tailwind": "^0.0.15",
"esbuild": "^0.25.1",
"tailwindcss": "^4.0.14"
},
"peerDependencies": {
"typescript": "^4.5.0 || ^5.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"keywords": [
"react sprite animation",
"react pixel animation",
"pixel animation",
"pixel",
"sprite animation",
"sprite"
]
}