UNPKG

strapi-plugin-gen-types

Version:

Generate types for the different collections, single types & components found in your application

92 lines (91 loc) 2.92 kB
{ "name": "strapi-plugin-gen-types", "version": "0.0.15", "description": "Generate types for the different collections, single types & components found in your application", "keywords": [ "strapi5", "strapi-plugin", "generate-strapi-types" ], "repository": { "type": "git", "url": "git+ssh://git@github.com/BayBreezy/strapi-plugin-gen-types.git" }, "homepage": "https://github.com/BayBreezy/strapi-plugin-gen-types.git", "license": "MIT", "author": { "name": "Behon Baker", "email": "behon.baker@yahoo.com", "url": "https://behonbaker.com" }, "type": "commonjs", "exports": { "./package.json": "./package.json", "./strapi-admin": { "types": "./dist/admin/src/index.d.ts", "source": "./admin/src/index.ts", "import": "./dist/admin/index.mjs", "require": "./dist/admin/index.js", "default": "./dist/admin/index.js" }, "./strapi-server": { "types": "./dist/server/src/index.d.ts", "source": "./server/src/index.ts", "import": "./dist/server/index.mjs", "require": "./dist/server/index.js", "default": "./dist/server/index.js" } }, "files": [ "dist" ], "scripts": { "afterClone": "rm -rf dist node_modules package-lock.json && npm install", "build": "strapi-plugin build", "format": "npx prettier --write .", "format:check": "npx prettier -c .", "release": "npm run format && npm run build && npm run verify && changelogen --release && npm publish && git push --follow-tags", "test:ts:back": "run -T tsc -p server/tsconfig.json", "test:ts:front": "run -T tsc -p admin/tsconfig.json", "verify": "strapi-plugin verify", "watch": "strapi-plugin watch", "watch:link": "strapi-plugin watch:link" }, "dependencies": { "@strapi/design-system": "^2.0.0-rc.16", "@strapi/icons": "^2.0.0-rc.16", "destr": "^2.0.3", "react-intl": "^7.1.6", "react-syntax-highlighter": "^15.6.1" }, "devDependencies": { "@strapi/sdk-plugin": "^5.3.1", "@strapi/strapi": "^5.10.2", "@strapi/typescript-utils": "^5.10.2", "@types/react": "^18.3.18", "@types/react-dom": "^18.3.5", "@types/react-syntax-highlighter": "^15.5.13", "changelogen": "^0.5.7", "prettier": "^3.5.1", "react": "^18.3.1", "react-dom": "^18.3.1", "react-router-dom": "^6.29.0", "styled-components": "^6.1.15", "typescript": "^5.7.3" }, "peerDependencies": { "@strapi/sdk-plugin": "^5.2.6", "@strapi/strapi": "^5.0.1", "react": "^18.3.1", "react-dom": "^18.3.1", "react-router-dom": "^6.26.2", "styled-components": "^6.1.13" }, "access": "public", "strapi": { "kind": "plugin", "name": "gen-types", "displayName": "Strapi Plugin Generate Types", "description": "Generate types for the different collections, single types & components found in your application" } }