mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@divkitframework/react",
|
|
"version": "1.1.0",
|
|
"description": "React binding for DivKit",
|
|
"keywords": [
|
|
"server-driven-ui",
|
|
"ssr",
|
|
"web",
|
|
"divkit",
|
|
"renderer",
|
|
"react"
|
|
],
|
|
"author": "",
|
|
"repository": "github:divkit/divkit",
|
|
"license": "Apache-2.0",
|
|
"files": [
|
|
"dist/*",
|
|
"typings/*"
|
|
],
|
|
"main": "./dist/divkit.js",
|
|
"types": "./typings/divkit.d.ts",
|
|
"scripts": {
|
|
"check:ts": "tsc --noEmit",
|
|
"check:eslint": "eslint --quiet .",
|
|
"build:prod": "rm -rf dist/ && NODE_ENV=production npx webpack-cli --progress",
|
|
"prepublishOnly": "cp ../../../LICENSE ./"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
"chrome >= 58",
|
|
"safari >= 11",
|
|
"firefox >= 67"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.20.2",
|
|
"@babel/preset-env": "7.20.2",
|
|
"@babel/preset-react": "7.18.6",
|
|
"@babel/preset-typescript": "7.18.6",
|
|
"@divkitframework/divkit": "16.0.0",
|
|
"@types/node": "17.0.21",
|
|
"@types/react": "17.0.40",
|
|
"@typescript-eslint/eslint-plugin": "5.43.0",
|
|
"@typescript-eslint/parser": "5.43.0",
|
|
"babel-loader": "8.3.0",
|
|
"eslint": "7.32.0",
|
|
"react": "16.14.0",
|
|
"typescript": "4.8.4",
|
|
"webpack": "5.75.0",
|
|
"webpack-cli": "5.0.0",
|
|
"webpack-dev-server": "4.11.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@divkitframework/divkit": "*",
|
|
"react": ">= 16"
|
|
}
|
|
}
|