Files
divkit/json-builder/typescript/package.json
T
robot-divkit 47e6e155b9 PR from branch users/robot-divkit/-updateversion
updated version to 20.0.1

fix demoapp_release_config
fix demeapp_release_config (cherry-pick from e2647d8a317018b940da1390fd63f66461ac907b)

Fix max sized of DivFrameLayout with match parent child (cherry-pick from 23fb83533a5e4aeb7f3e5ae1ad3831331bb2c7bc)

Fix border drawing in animations (cherry-pick from 5c74b7c45d59566c6b0ffed5e007b9623f5e84a7)

Cherry pickadd build config for demoapp release

Check view is laid out before draw it to bitmap (cherry-pick from 8e610704677942792289bd1c0e58ddc0a0fd1887)

Request layout after weight updating (cherry-pick from c6f488dd9b2c7f628de152672a73a95c98ce191d)

added dns requirement into github task (cherry-pick from c6bcc5d6fdc7f1fa1ea2e09351c7a5ab622c4824)

update changelog
update changelog (cherry-pick from 7a50c5c8acc5288eb9123ef5e8d430d5148f0494)

update api dump
update div.api (cherry-pick from 0563c1635b4695e6a5c9cfa45d0be620056b2914)

updated version to 20.0.0 (cherry-pick from 8894effabe2379433255ef389125c6bea46b74ae)
2023-01-11 12:19:26 +03:00

54 lines
1.6 KiB
JSON

{
"name": "@divkitframework/jsonbuilder",
"version": "21.1.0",
"description": "DivKit TypeScript JSON Builder",
"main": "./dist/jsonbuilder.js",
"module": "./dist/es/jsonbuilder.js",
"types": "./dist/jsonbuilder.d.ts",
"exports": {
".": {
"types": "./dist/jsonbuilder.d.ts",
"require": "./dist/jsonbuilder.js",
"import": "./dist/es/jsonbuilder.js"
},
"./dist/": "./dist/"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run gen && rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript",
"gen": "sh codegen.sh",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "tsc --noEmit && eslint 'src/**/*.ts' 'test/**/*.ts'",
"cover": "jest --collect-coverage",
"prepublishOnly": "npm run build && cp ../../LICENSE ./"
},
"keywords": [
"server-driven-ui",
"divkit",
"jsonbuilder"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-typescript": "8.3.3",
"@types/jest": "26.0.24",
"@types/node": "12.6.8",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "7.32.0",
"eslint-plugin-prettier": "3.4.1",
"jest": "26.6.3",
"prettier": "2.7.1",
"rollup": "2.75.7",
"rollup-plugin-dts": "4.2.2",
"ts-jest": "26.5.6",
"ts-node": "10.8.2",
"tslib": "2.4.0",
"typescript": "4.6.4"
},
"files": [
"dist/**"
]
}