BaekRyang 808ddd99ec init
2025-11-04 10:15:34 +09:00

49 lines
1.1 KiB
JSON

{
"name": "responsive-image-canvas",
"version": "1.0.0",
"description": "React component for interactive image distortion with GPU-accelerated shaders",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"three": "^0.150.0"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/three": "^0.181.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.181.0",
"tsup": "^8.5.0",
"typescript": "^5.5.3"
},
"keywords": [
"react",
"three.js",
"webgl",
"shader",
"image-distortion",
"canvas",
"animation"
],
"author": "",
"license": "MIT"
}