strapi-plugin-country-select
Version:
A strapi custom field for selecting any country based on the ISO 3166-1 country code standard.
87 lines (86 loc) • 2.75 kB
JSON
{
"name": "strapi-plugin-country-select",
"description": "A strapi custom field for selecting any country based on the ISO 3166-1 country code standard.",
"keywords": [
"strapi",
"strapi-plugin",
"custom-fields",
"country"
],
"version": "2.1.0",
"repository": {
"type": "git",
"url": "https://github.com/ChrisEbert/strapi-plugin-country-select.git"
},
"bugs": {
"url": "https://github.com/ChrisEbert/strapi-plugin-country-select/issues"
},
"author": {
"name": "Chris Ebert",
"email": "chris.ebert.dev@gmail.com",
"url": "https://chris.ebert.dev"
},
"license": "MIT",
"strapi": {
"name": "country-select",
"description": "Country Select custom field",
"kind": "plugin",
"displayName": "Country Select"
},
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:ts:back": "run -T tsc -p server/tsconfig.json"
},
"dependencies": {
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"i18n-iso-countries": "^7.5.0",
"react-intl": "^7.1.0"
},
"devDependencies": {
"@strapi/strapi": "^5.7.0",
"@strapi/sdk-plugin": "^5.3.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.1",
"styled-components": "^6.1.14",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@strapi/typescript-utils": "^5.7.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@strapi/strapi": "^5.7.0",
"@strapi/sdk-plugin": "^5.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.1",
"styled-components": "^6.1.14"
},
"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"
]
}