add enter functionality and resolve title show bug

This commit is contained in:
ismailsosic
2023-03-08 16:17:26 +01:00
parent 71811fac4b
commit f09648dd67
420 changed files with 21395 additions and 1067108 deletions

View File

@@ -1,22 +1,41 @@
{
"name": "regexpp",
"version": "3.2.0",
"description": "Regular expression parser for ECMAScript.",
"engines": {
"node": ">=8"
},
"main": "index",
"files": [
"index.*"
"_args": [
[
"regexpp@3.2.0",
"/home/ismail/Desktop/kitabcitab-frontend/kitabcitab"
]
],
"exports": {
".": {
"import": "./index.mjs",
"default": "./index.js"
},
"./package.json": "./package.json"
"_from": "regexpp@3.2.0",
"_id": "regexpp@3.2.0",
"_inBundle": false,
"_integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
"_location": "/regexpp",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "regexpp@3.2.0",
"name": "regexpp",
"escapedName": "regexpp",
"rawSpec": "3.2.0",
"saveSpec": null,
"fetchSpec": "3.2.0"
},
"_requiredBy": [
"/eslint"
],
"_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
"_spec": "3.2.0",
"_where": "/home/ismail/Desktop/kitabcitab-frontend/kitabcitab",
"author": {
"name": "Toru Nagashima",
"url": "https://github.com/mysticatea"
},
"bugs": {
"url": "https://github.com/mysticatea/regexpp/issues"
},
"dependencies": {},
"description": "Regular expression parser for ECMAScript.",
"devDependencies": {
"@mysticatea/eslint-plugin": "^11.0.0",
"@types/eslint": "^4.16.2",
@@ -37,31 +56,21 @@
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"scripts": {
"prebuild": "npm run -s clean",
"build": "run-s build:*",
"build:tsc": "tsc --module es2015",
"build:rollup": "rollup -c",
"build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
"clean": "rimraf .temp index.*",
"codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
"lint": "eslint scripts src test --ext .ts",
"pretest": "run-s build lint",
"test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
"update:test": "ts-node scripts/update-fixtures.ts",
"update:unicode": "run-s update:unicode:*",
"update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
"update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
"preversion": "npm test",
"version": "npm run -s build",
"postversion": "git push && git push --tags",
"prewatch": "npm run -s clean",
"watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/regexpp.git"
"exports": {
".": {
"import": "./index.mjs",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.*"
],
"funding": "https://github.com/sponsors/mysticatea",
"homepage": "https://github.com/mysticatea/regexpp#readme",
"keywords": [
"regexp",
"regular",
@@ -81,11 +90,33 @@
"es2020",
"annexB"
],
"author": "Toru Nagashima (https://github.com/mysticatea)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/regexpp/issues"
"main": "index",
"name": "regexpp",
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/regexpp.git"
},
"homepage": "https://github.com/mysticatea/regexpp#readme",
"funding": "https://github.com/sponsors/mysticatea"
"scripts": {
"build": "run-s build:*",
"build:dts": "dts-bundle --name regexpp --main .temp/index.d.ts --out ../index.d.ts",
"build:rollup": "rollup -c",
"build:tsc": "tsc --module es2015",
"clean": "rimraf .temp index.*",
"codecov": "nyc report -r lcovonly && codecov -t ${CODECOV_TOKEN} --disable=gcov",
"lint": "eslint scripts src test --ext .ts",
"postversion": "git push && git push --tags",
"prebuild": "npm run -s clean",
"pretest": "run-s build lint",
"preversion": "npm test",
"prewatch": "npm run -s clean",
"test": "nyc _mocha \"test/*.ts\" --reporter dot --timeout 10000",
"update:test": "ts-node scripts/update-fixtures.ts",
"update:unicode": "run-s update:unicode:*",
"update:unicode:ids": "ts-node scripts/update-unicode-ids.ts",
"update:unicode:props": "ts-node scripts/update-unicode-properties.ts",
"version": "npm run -s build",
"watch": "_mocha \"test/*.ts\" --require ts-node/register --reporter dot --timeout 10000 --watch-extensions ts --watch --growl"
},
"version": "3.2.0"
}