- `package.json` 파일에서 패키지 버전이 1.0.0에서 1.0.1로 업데이트되었습니다. - 패키지 이름이 `@baekryang/responsive-image-canvas`로 변경되었습니다. - `publishConfig`에 npm 레지스트리 주소가 추가되었습니다. - `.gitignore` 파일에 `demo.npmrc` 파일이 추가되어 불필요한 파일이 추적되지 않도록 수정되었습니다.
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "@baekryang/responsive-image-canvas",
|
|
"version": "1.0.1",
|
|
"publishConfig": {
|
|
"registry": "https://git.bnovalab.com/api/packages/baekryang/npm/"
|
|
},
|
|
"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"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.bnovalab.com/baekryang/responsive-image-canvas.git"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"three.js",
|
|
"webgl",
|
|
"shader",
|
|
"image-distortion",
|
|
"canvas",
|
|
"animation"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|