File size: 2,466 Bytes
fea495a | 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | {
"name": "unicornstudio-react",
"version": "2.1.4-1",
"description": "React component for embedding Unicorn.Studio interactive scenes with TypeScript support. Compatible with React (Vite) and Next.js.",
"keywords": [
"react",
"nextjs",
"next.js",
"vite",
"unicorn-studio",
"unicornstudio",
"animation",
"webgl",
"canvas",
"interactive",
"3d",
"scenes",
"typescript",
"component",
"wrapper"
],
"author": "Diego Peixoto <crazypxt@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/diegopeixoto/unicornstudio-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/diegopeixoto/unicornstudio-react.git"
},
"bugs": {
"url": "https://github.com/diegopeixoto/unicornstudio-react/issues"
},
"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"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.mjs",
"require": "./dist/next.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"jsdom": "^29.0.1",
"next": "^14.0.0",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}
|