1 Star 0 Fork 9

luodh/notesnook

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package-lock.json 84.22 KB
一键复制 编辑 原始数据 按行查看 历史
Ammar Ahmed 提交于 2022-09-01 18:23 +08:00 . config: add test builds to targetDefaults nx
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303
{
"name": "@notesnook/editor",
"version": "1.3.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@notesnook/editor",
"version": "1.3.1",
"license": "GPL-3.0",
"dependencies": {
"@_ueberdosis/prosemirror-tables": "^1.1.3",
"@emotion/react": "^11.10.0",
"@mdi/js": "^6.9.96",
"@mdi/react": "^1.6.0",
"@social-embed/lib": "^0.0.1-next.12",
"@theme-ui/components": "^0.14.7",
"@theme-ui/core": "^0.14.7",
"@tiptap/core": "^2.0.0-beta.181",
"@tiptap/extension-character-count": "^2.0.0-beta.31",
"@tiptap/extension-color": "^2.0.0-beta.12",
"@tiptap/extension-font-family": "^2.0.0-beta.24",
"@tiptap/extension-history": "^2.0.0-beta.26",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.36",
"@tiptap/extension-link": "^2.0.0-beta.43",
"@tiptap/extension-placeholder": "^2.0.0-beta.53",
"@tiptap/extension-subscript": "^2.0.0-beta.13",
"@tiptap/extension-superscript": "^2.0.0-beta.13",
"@tiptap/extension-table": "^2.0.0-beta.54",
"@tiptap/extension-table-cell": "^2.0.0-beta.23",
"@tiptap/extension-table-header": "^2.0.0-beta.25",
"@tiptap/extension-table-row": "^2.0.0-beta.22",
"@tiptap/extension-task-item": "^2.0.0-beta.37",
"@tiptap/extension-task-list": "^2.0.0-beta.29",
"@tiptap/extension-text-align": "^2.0.0-beta.31",
"@tiptap/extension-text-style": "^2.0.0-beta.26",
"@tiptap/extension-underline": "^2.0.0-beta.25",
"@tiptap/starter-kit": "^2.0.0-beta.190",
"detect-indent": "^7.0.0",
"katex": "^0.16.0",
"prism-themes": "^1.9.0",
"prosemirror-codemark": "^0.4.0",
"prosemirror-commands": "^1.3.0",
"prosemirror-utils": "github:atlassian/prosemirror-utils",
"prosemirror-view": "^1.26.2",
"re-resizable": "^6.9.9",
"react-colorful": "^5.5.1",
"react-modal": "^3.15.1",
"redent": "^4.0.0",
"refractor": "^4.7.0",
"strip-indent": "^4.0.0",
"tinycolor2": "^1.4.2",
"unfurl.js": "^5.7.0",
"zustand": "^3.7.2"
},
"devDependencies": {
"@types/katex": "^0.14.0",
"@types/prismjs": "^1.26.0",
"@types/react": "17.0.2",
"@types/react-color": "^3.0.6",
"@types/react-dom": "17.0.2",
"@types/react-modal": "^3.13.1",
"@types/tinycolor2": "^1.4.3",
"framer-motion": "^4.1.17",
"isomorphic-fetch": "^3.0.0",
"typescript": "^4.8.2",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
},
"../theme": {
"name": "@notesnook/theme",
"version": "1.0.1",
"extraneous": true,
"license": "GPL-3.0",
"dependencies": {
"@streetwriters/rebass": "^5.0.0",
"@streetwriters/rebass-forms": "^5.0.0",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@types/tinycolor2": "^1.4.3",
"typescript": "^4.8.2"
}
},
"node_modules/@_ueberdosis/prosemirror-tables": {
"version": "1.1.3",
"license": "MIT",
"dependencies": {
"prosemirror-keymap": "^1.1.2",
"prosemirror-model": "^1.8.1",
"prosemirror-state": "^1.3.1",
"prosemirror-transform": "^1.2.1",
"prosemirror-view": "^1.13.3"
}
},
"node_modules/@babel/code-frame": {
"version": "7.18.6",
"license": "MIT",
"dependencies": {
"@babel/highlight": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.18.6",
"license": "MIT",
"dependencies": {
"@babel/types": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.18.9",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.18.10",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.18.6",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.18.6",
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.18.6",
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.18.9",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.18.13",
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.18.10",
"@babel/helper-validator-identifier": "^7.18.6",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@emotion/babel-plugin": {
"version": "11.10.2",
"license": "MIT",
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/plugin-syntax-jsx": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/serialize": "^1.1.0",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.0.13"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@emotion/babel-plugin/node_modules/@emotion/hash": {
"version": "0.9.0",
"license": "MIT"
},
"node_modules/@emotion/babel-plugin/node_modules/@emotion/memoize": {
"version": "0.8.0",
"license": "MIT"
},
"node_modules/@emotion/babel-plugin/node_modules/@emotion/serialize": {
"version": "1.1.0",
"license": "MIT",
"dependencies": {
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/unitless": "^0.8.0",
"@emotion/utils": "^1.2.0",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/babel-plugin/node_modules/@emotion/unitless": {
"version": "0.8.0",
"license": "MIT"
},
"node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": {
"version": "4.0.0",
"license": "MIT",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@emotion/cache": {
"version": "11.10.3",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "^0.8.0",
"@emotion/sheet": "^1.2.0",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"stylis": "4.0.13"
}
},
"node_modules/@emotion/cache/node_modules/@emotion/memoize": {
"version": "0.8.0",
"license": "MIT"
},
"node_modules/@emotion/is-prop-valid": {
"version": "0.8.8",
"license": "MIT",
"dependencies": {
"@emotion/memoize": "0.7.4"
}
},
"node_modules/@emotion/memoize": {
"version": "0.7.4",
"license": "MIT"
},
"node_modules/@emotion/react": {
"version": "11.10.0",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/cache": "^11.10.0",
"@emotion/serialize": "^1.1.0",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/react/node_modules/@emotion/hash": {
"version": "0.9.0",
"license": "MIT"
},
"node_modules/@emotion/react/node_modules/@emotion/memoize": {
"version": "0.8.0",
"license": "MIT"
},
"node_modules/@emotion/react/node_modules/@emotion/serialize": {
"version": "1.1.0",
"license": "MIT",
"dependencies": {
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/unitless": "^0.8.0",
"@emotion/utils": "^1.2.0",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/react/node_modules/@emotion/unitless": {
"version": "0.8.0",
"license": "MIT"
},
"node_modules/@emotion/react/node_modules/csstype": {
"version": "3.1.0",
"license": "MIT"
},
"node_modules/@emotion/sheet": {
"version": "1.2.0",
"license": "MIT"
},
"node_modules/@emotion/utils": {
"version": "1.2.0",
"license": "MIT"
},
"node_modules/@emotion/weak-memoize": {
"version": "0.3.0",
"license": "MIT"
},
"node_modules/@mdi/js": {
"version": "6.9.96",
"license": "Apache-2.0"
},
"node_modules/@mdi/react": {
"version": "1.6.0",
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2"
}
},
"node_modules/@social-embed/lib": {
"version": "0.0.1-next.12",
"license": "MIT"
},
"node_modules/@styled-system/background": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/border": {
"version": "5.1.5",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/color": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/core": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"object-assign": "^4.1.1"
}
},
"node_modules/@styled-system/css": {
"version": "5.1.5",
"license": "MIT"
},
"node_modules/@styled-system/flexbox": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/grid": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/layout": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/position": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/shadow": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/should-forward-prop": {
"version": "5.1.5",
"license": "MIT",
"dependencies": {
"@emotion/is-prop-valid": "^0.8.1",
"@emotion/memoize": "^0.7.1",
"styled-system": "^5.1.5"
}
},
"node_modules/@styled-system/space": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/typography": {
"version": "5.1.2",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2"
}
},
"node_modules/@styled-system/variant": {
"version": "5.1.5",
"license": "MIT",
"dependencies": {
"@styled-system/core": "^5.1.2",
"@styled-system/css": "^5.1.5"
}
},
"node_modules/@theme-ui/components": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/components/-/components-0.14.7.tgz",
"integrity": "sha512-iIzqBvRL8GNVkzuZinxInYNFW/38pvqqthuCgLsnOC0/A4Q4v13mn/fxlZa6pJjwouswsRLOrkd63bS7Svzkfw==",
"dependencies": {
"@styled-system/color": "^5.1.2",
"@styled-system/should-forward-prop": "^5.1.2",
"@styled-system/space": "^5.1.2",
"@theme-ui/css": "0.14.7",
"@types/styled-system": "^5.1.13"
},
"peerDependencies": {
"@emotion/react": "^11",
"react": ">16"
}
},
"node_modules/@theme-ui/core": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/core/-/core-0.14.7.tgz",
"integrity": "sha512-u60cKOZYsGDG9sSoM4jYj743OpNXXU27f7vXGwrO/B1t/1sv1MAQA0R8HtVwoi9DyOIcOmWfMWYTiMg+4vV1MA==",
"dependencies": {
"@theme-ui/css": "0.14.7",
"@theme-ui/parse-props": "0.14.7",
"deepmerge": "^4.2.2"
},
"peerDependencies": {
"@emotion/react": "^11",
"react": ">16"
}
},
"node_modules/@theme-ui/css": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/css/-/css-0.14.7.tgz",
"integrity": "sha512-DbGw0T4MrTjiRs6lnyYgSD2TV/LvFErzDDpm0ICPL2KqDwqgHX4mFpDafj8/DkyCO9wx2KEiUuE+0NtOlR3i4w==",
"dependencies": {
"csstype": "^3.0.10"
},
"peerDependencies": {
"@emotion/react": "^11"
}
},
"node_modules/@theme-ui/parse-props": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/parse-props/-/parse-props-0.14.7.tgz",
"integrity": "sha512-qF10mAYs3wcIkSU5ZSbmHUngwTkPS87D23qg1ArbeO+m+/e4uqOy0+6W0Lt/4JTP7lnWWsCYuScK3F3hOp2q0w==",
"dependencies": {
"@theme-ui/css": "0.14.7"
},
"peerDependencies": {
"@emotion/react": "^11",
"react": ">16"
}
},
"node_modules/@tiptap/core": {
"version": "2.0.0-beta.182",
"license": "MIT",
"dependencies": {
"prosemirror-commands": "1.3.0",
"prosemirror-keymap": "1.2.0",
"prosemirror-model": "1.18.1",
"prosemirror-schema-list": "1.2.0",
"prosemirror-state": "1.4.1",
"prosemirror-transform": "1.6.0",
"prosemirror-view": "1.26.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
}
},
"node_modules/@tiptap/extension-blockquote": {
"version": "2.0.0-beta.29",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-bold": {
"version": "2.0.0-beta.28",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-bullet-list": {
"version": "2.0.0-beta.29",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-character-count": {
"version": "2.0.0-beta.31",
"license": "MIT",
"dependencies": {
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-code": {
"version": "2.0.0-beta.28",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-code-block": {
"version": "2.0.0-beta.42",
"license": "MIT",
"dependencies": {
"prosemirror-state": "1.4.1"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-color": {
"version": "2.0.0-beta.12",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1",
"@tiptap/extension-text-style": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-document": {
"version": "2.0.0-beta.17",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-dropcursor": {
"version": "2.0.0-beta.29",
"license": "MIT",
"dependencies": {
"prosemirror-dropcursor": "1.5.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-font-family": {
"version": "2.0.0-beta.24",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1",
"@tiptap/extension-text-style": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-gapcursor": {
"version": "2.0.0-beta.39",
"license": "MIT",
"dependencies": {
"prosemirror-gapcursor": "1.3.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-hard-break": {
"version": "2.0.0-beta.33",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-heading": {
"version": "2.0.0-beta.29",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-history": {
"version": "2.0.0-beta.26",
"license": "MIT",
"dependencies": {
"prosemirror-history": "1.3.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-horizontal-rule": {
"version": "2.0.0-beta.36",
"license": "MIT",
"dependencies": {
"prosemirror-state": "1.4.1"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-italic": {
"version": "2.0.0-beta.28",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-link": {
"version": "2.0.0-beta.43",
"license": "MIT",
"dependencies": {
"linkifyjs": "^3.0.5",
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-list-item": {
"version": "2.0.0-beta.23",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-ordered-list": {
"version": "2.0.0-beta.30",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-paragraph": {
"version": "2.0.0-beta.26",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-placeholder": {
"version": "2.0.0-beta.53",
"license": "MIT",
"dependencies": {
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1",
"prosemirror-view": "1.26.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-strike": {
"version": "2.0.0-beta.29",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-subscript": {
"version": "2.0.0-beta.13",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-superscript": {
"version": "2.0.0-beta.13",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-table": {
"version": "2.0.0-beta.54",
"license": "MIT",
"dependencies": {
"@_ueberdosis/prosemirror-tables": "1.1.3",
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1",
"prosemirror-view": "1.26.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-table-cell": {
"version": "2.0.0-beta.23",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-table-header": {
"version": "2.0.0-beta.25",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-table-row": {
"version": "2.0.0-beta.22",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-task-item": {
"version": "2.0.0-beta.37",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1",
"prosemirror-model": "1.18.1"
}
},
"node_modules/@tiptap/extension-task-list": {
"version": "2.0.0-beta.29",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-text": {
"version": "2.0.0-beta.17",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-text-align": {
"version": "2.0.0-beta.31",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-text-style": {
"version": "2.0.0-beta.26",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/extension-underline": {
"version": "2.0.0-beta.25",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
},
"peerDependencies": {
"@tiptap/core": "^2.0.0-beta.1"
}
},
"node_modules/@tiptap/starter-kit": {
"version": "2.0.0-beta.190",
"license": "MIT",
"dependencies": {
"@tiptap/core": "^2.0.0-beta.181",
"@tiptap/extension-blockquote": "^2.0.0-beta.29",
"@tiptap/extension-bold": "^2.0.0-beta.28",
"@tiptap/extension-bullet-list": "^2.0.0-beta.29",
"@tiptap/extension-code": "^2.0.0-beta.28",
"@tiptap/extension-code-block": "^2.0.0-beta.42",
"@tiptap/extension-document": "^2.0.0-beta.17",
"@tiptap/extension-dropcursor": "^2.0.0-beta.29",
"@tiptap/extension-gapcursor": "^2.0.0-beta.39",
"@tiptap/extension-hard-break": "^2.0.0-beta.33",
"@tiptap/extension-heading": "^2.0.0-beta.29",
"@tiptap/extension-history": "^2.0.0-beta.26",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.36",
"@tiptap/extension-italic": "^2.0.0-beta.28",
"@tiptap/extension-list-item": "^2.0.0-beta.23",
"@tiptap/extension-ordered-list": "^2.0.0-beta.30",
"@tiptap/extension-paragraph": "^2.0.0-beta.26",
"@tiptap/extension-strike": "^2.0.0-beta.29",
"@tiptap/extension-text": "^2.0.0-beta.17"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ueberdosis"
}
},
"node_modules/@types/hast": {
"version": "2.3.4",
"license": "MIT",
"dependencies": {
"@types/unist": "*"
}
},
"node_modules/@types/katex": {
"version": "0.14.0",
"dev": true,
"license": "MIT"
},
"node_modules/@types/parse-json": {
"version": "4.0.0",
"license": "MIT"
},
"node_modules/@types/prismjs": {
"version": "1.26.0",
"license": "MIT"
},
"node_modules/@types/prop-types": {
"version": "15.7.5",
"dev": true,
"license": "MIT"
},
"node_modules/@types/react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz",
"integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==",
"dev": true,
"dependencies": {
"@types/prop-types": "*",
"csstype": "^3.0.2"
}
},
"node_modules/@types/react-color": {
"version": "3.0.6",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/react": "*",
"@types/reactcss": "*"
}
},
"node_modules/@types/react-dom": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.2.tgz",
"integrity": "sha512-Icd9KEgdnFfJs39KyRyr0jQ7EKhq8U6CcHRMGAS45fp5qgUvxL3ujUCfWFttUK2UErqZNj97t9gsVPNAqcwoCg==",
"dev": true,
"dependencies": {
"@types/react": "*"
}
},
"node_modules/@types/react-modal": {
"version": "3.13.1",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/react": "*"
}
},
"node_modules/@types/reactcss": {
"version": "1.2.6",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/react": "*"
}
},
"node_modules/@types/styled-system": {
"version": "5.1.15",
"resolved": "https://registry.npmjs.org/@types/styled-system/-/styled-system-5.1.15.tgz",
"integrity": "sha512-1uls4wipZn8FtYFZ7upRVFDoEeOXTQTs2zuyOZPn02T6rjIxtvj2P2lG5qsxXHhKuKsu3thveCZrtaeLE/ibLg==",
"dependencies": {
"csstype": "^3.0.2"
}
},
"node_modules/@types/tinycolor2": {
"version": "1.4.3",
"dev": true,
"license": "MIT"
},
"node_modules/@types/unist": {
"version": "2.0.6",
"license": "MIT"
},
"node_modules/ansi-styles": {
"version": "3.2.1",
"license": "MIT",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/babel-plugin-macros": {
"version": "3.1.0",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
"resolve": "^1.19.0"
},
"engines": {
"node": ">=10",
"npm": ">=6"
}
},
"node_modules/buffer-from": {
"version": "1.1.2",
"license": "MIT"
},
"node_modules/callsites": {
"version": "3.1.0",
"license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/chalk": {
"version": "2.4.2",
"license": "MIT",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/character-entities": {
"version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/character-entities-legacy": {
"version": "3.0.0",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/character-reference-invalid": {
"version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/color-convert": {
"version": "1.9.3",
"license": "MIT",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/color-name": {
"version": "1.1.3",
"license": "MIT"
},
"node_modules/comma-separated-tokens": {
"version": "2.0.2",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/convert-source-map": {
"version": "1.8.0",
"license": "MIT",
"dependencies": {
"safe-buffer": "~5.1.1"
}
},
"node_modules/cosmiconfig": {
"version": "7.0.1",
"license": "MIT",
"dependencies": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/csstype": {
"version": "3.1.0",
"license": "MIT"
},
"node_modules/decode-named-character-reference": {
"version": "1.0.1",
"license": "MIT",
"dependencies": {
"character-entities": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/deepmerge": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
"integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/detect-indent": {
"version": "7.0.0",
"license": "MIT",
"engines": {
"node": ">=12.20"
}
},
"node_modules/error-ex": {
"version": "1.3.2",
"license": "MIT",
"dependencies": {
"is-arrayish": "^0.2.1"
}
},
"node_modules/escape-string-regexp": {
"version": "1.0.5",
"license": "MIT",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/exenv": {
"version": "1.2.2",
"license": "BSD-3-Clause"
},
"node_modules/find-root": {
"version": "1.1.0",
"license": "MIT"
},
"node_modules/framer-motion": {
"version": "4.1.17",
"dev": true,
"license": "MIT",
"dependencies": {
"framesync": "5.3.0",
"hey-listen": "^1.0.8",
"popmotion": "9.3.6",
"style-value-types": "4.1.4",
"tslib": "^2.1.0"
},
"optionalDependencies": {
"@emotion/is-prop-valid": "^0.8.2"
},
"peerDependencies": {
"react": ">=16.8 || ^17.0.0",
"react-dom": ">=16.8 || ^17.0.0"
}
},
"node_modules/framesync": {
"version": "5.3.0",
"dev": true,
"license": "MIT",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/function-bind": {
"version": "1.1.1",
"license": "MIT"
},
"node_modules/has": {
"version": "1.0.3",
"license": "MIT",
"dependencies": {
"function-bind": "^1.1.1"
},
"engines": {
"node": ">= 0.4.0"
}
},
"node_modules/has-flag": {
"version": "3.0.0",
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/hast-util-parse-selector": {
"version": "3.1.0",
"license": "MIT",
"dependencies": {
"@types/hast": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/hastscript": {
"version": "7.0.2",
"license": "MIT",
"dependencies": {
"@types/hast": "^2.0.0",
"comma-separated-tokens": "^2.0.0",
"hast-util-parse-selector": "^3.0.0",
"property-information": "^6.0.0",
"space-separated-tokens": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
}
},
"node_modules/he": {
"version": "1.2.0",
"license": "MIT",
"bin": {
"he": "bin/he"
}
},
"node_modules/hey-listen": {
"version": "1.0.8",
"dev": true,
"license": "MIT"
},
"node_modules/hoist-non-react-statics": {
"version": "3.3.2",
"license": "BSD-3-Clause",
"dependencies": {
"react-is": "^16.7.0"
}
},
"node_modules/iconv-lite": {
"version": "0.4.24",
"license": "MIT",
"dependencies": {
"safer-buffer": ">= 2.1.2 < 3"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/import-fresh": {
"version": "3.3.0",
"license": "MIT",
"dependencies": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/inherits": {
"version": "2.0.4",
"license": "ISC"
},
"node_modules/is-alphabetical": {
"version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-alphanumerical": {
"version": "2.0.1",
"license": "MIT",
"dependencies": {
"is-alphabetical": "^2.0.0",
"is-decimal": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-arrayish": {
"version": "0.2.1",
"license": "MIT"
},
"node_modules/is-core-module": {
"version": "2.9.0",
"license": "MIT",
"dependencies": {
"has": "^1.0.3"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/is-decimal": {
"version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/is-hexadecimal": {
"version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/isomorphic-fetch": {
"version": "3.0.0",
"dev": true,
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.1",
"whatwg-fetch": "^3.4.1"
}
},
"node_modules/js-tokens": {
"version": "4.0.0",
"license": "MIT"
},
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
"license": "MIT"
},
"node_modules/katex": {
"version": "0.16.0",
"funding": [
"https://opencollective.com/katex",
"https://github.com/sponsors/katex"
],
"license": "MIT",
"dependencies": {
"commander": "^8.0.0"
},
"bin": {
"katex": "cli.js"
}
},
"node_modules/katex/node_modules/commander": {
"version": "8.3.0",
"license": "MIT",
"engines": {
"node": ">= 12"
}
},
"node_modules/lines-and-columns": {
"version": "1.2.4",
"license": "MIT"
},
"node_modules/linkifyjs": {
"version": "3.0.5",
"license": "MIT"
},
"node_modules/loose-envify": {
"version": "1.4.0",
"license": "MIT",
"dependencies": {
"js-tokens": "^3.0.0 || ^4.0.0"
},
"bin": {
"loose-envify": "cli.js"
}
},
"node_modules/min-indent": {
"version": "1.0.1",
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/ms": {
"version": "2.1.2",
"license": "MIT"
},
"node_modules/node-fetch": {
"version": "2.6.7",
"license": "MIT",
"dependencies": {
"whatwg-url": "^5.0.0"
},
"engines": {
"node": "4.x || >=6.0.0"
},
"peerDependencies": {
"encoding": "^0.1.0"
},
"peerDependenciesMeta": {
"encoding": {
"optional": true
}
}
},
"node_modules/object-assign": {
"version": "4.1.1",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/orderedmap": {
"version": "2.0.0",
"license": "MIT"
},
"node_modules/parent-module": {
"version": "1.0.1",
"license": "MIT",
"dependencies": {
"callsites": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/parse-entities": {
"version": "4.0.0",
"license": "MIT",
"dependencies": {
"@types/unist": "^2.0.0",
"character-entities": "^2.0.0",
"character-entities-legacy": "^3.0.0",
"character-reference-invalid": "^2.0.0",
"decode-named-character-reference": "^1.0.0",
"is-alphanumerical": "^2.0.0",
"is-decimal": "^2.0.0",
"is-hexadecimal": "^2.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/parse-json": {
"version": "5.2.0",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
"json-parse-even-better-errors": "^2.3.0",
"lines-and-columns": "^1.1.6"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/path-parse": {
"version": "1.0.7",
"license": "MIT"
},
"node_modules/path-type": {
"version": "4.0.0",
"license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/popmotion": {
"version": "9.3.6",
"dev": true,
"license": "MIT",
"dependencies": {
"framesync": "5.3.0",
"hey-listen": "^1.0.8",
"style-value-types": "4.1.4",
"tslib": "^2.1.0"
}
},
"node_modules/prism-themes": {
"version": "1.9.0",
"license": "MIT"
},
"node_modules/prop-types": {
"version": "15.8.1",
"license": "MIT",
"dependencies": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
"react-is": "^16.13.1"
}
},
"node_modules/property-information": {
"version": "6.1.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/prosemirror-codemark": {
"version": "0.4.0",
"license": "MIT",
"peerDependencies": {
"prosemirror-inputrules": "^1.2.0",
"prosemirror-model": "^1.18.1",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.26.2"
}
},
"node_modules/prosemirror-commands": {
"version": "1.3.0",
"license": "MIT",
"dependencies": {
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.0.0"
}
},
"node_modules/prosemirror-dropcursor": {
"version": "1.5.0",
"license": "MIT",
"dependencies": {
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.1.0",
"prosemirror-view": "^1.1.0"
}
},
"node_modules/prosemirror-gapcursor": {
"version": "1.3.0",
"license": "MIT",
"dependencies": {
"prosemirror-keymap": "^1.0.0",
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-view": "^1.0.0"
}
},
"node_modules/prosemirror-history": {
"version": "1.3.0",
"license": "MIT",
"dependencies": {
"prosemirror-state": "^1.2.2",
"prosemirror-transform": "^1.0.0",
"rope-sequence": "^1.3.0"
}
},
"node_modules/prosemirror-keymap": {
"version": "1.2.0",
"license": "MIT",
"dependencies": {
"prosemirror-state": "^1.0.0",
"w3c-keyname": "^2.2.0"
}
},
"node_modules/prosemirror-model": {
"version": "1.18.1",
"license": "MIT",
"dependencies": {
"orderedmap": "^2.0.0"
}
},
"node_modules/prosemirror-schema-list": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.2.0.tgz",
"integrity": "sha512-8PT/9xOx1HHdC7fDNNfhQ50Z8Mzu7nKyA1KCDltSpcZVZIbB0k7KtsHrnXyuIhbLlScoymBiLZ00c5MH6wdFsA==",
"dependencies": {
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.0.0"
}
},
"node_modules/prosemirror-state": {
"version": "1.4.1",
"license": "MIT",
"dependencies": {
"prosemirror-model": "^1.0.0",
"prosemirror-transform": "^1.0.0"
}
},
"node_modules/prosemirror-transform": {
"version": "1.6.0",
"license": "MIT",
"dependencies": {
"prosemirror-model": "^1.0.0"
}
},
"node_modules/prosemirror-utils": {
"version": "1.0.0-0",
"resolved": "git+ssh://git@github.com/atlassian/prosemirror-utils.git#1b97ff08f1bbaea781f205744588a3dfd228b0d1",
"license": "Apache-2.0",
"peerDependencies": {
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.1"
}
},
"node_modules/prosemirror-view": {
"version": "1.26.2",
"license": "MIT",
"dependencies": {
"prosemirror-model": "^1.16.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.1.0"
}
},
"node_modules/re-resizable": {
"version": "6.9.9",
"license": "MIT",
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/react-colorful": {
"version": "5.5.1",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/react-is": {
"version": "16.13.1",
"license": "MIT"
},
"node_modules/react-lifecycles-compat": {
"version": "3.0.4",
"license": "MIT"
},
"node_modules/react-modal": {
"version": "3.15.1",
"license": "MIT",
"dependencies": {
"exenv": "^1.2.0",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.0",
"warning": "^4.0.3"
},
"engines": {
"node": ">=8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18",
"react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18"
}
},
"node_modules/redent": {
"version": "4.0.0",
"license": "MIT",
"dependencies": {
"indent-string": "^5.0.0",
"strip-indent": "^4.0.0"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/redent/node_modules/indent-string": {
"version": "5.0.0",
"license": "MIT",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/refractor": {
"version": "4.7.0",
"license": "MIT",
"dependencies": {
"@types/hast": "^2.0.0",
"@types/prismjs": "^1.0.0",
"hastscript": "^7.0.0",
"parse-entities": "^4.0.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/regenerator-runtime": {
"version": "0.13.9",
"license": "MIT"
},
"node_modules/resolve": {
"version": "1.22.0",
"license": "MIT",
"dependencies": {
"is-core-module": "^2.8.1",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
"bin": {
"resolve": "bin/resolve"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/resolve-from": {
"version": "4.0.0",
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/rope-sequence": {
"version": "1.3.3",
"license": "MIT"
},
"node_modules/safe-buffer": {
"version": "5.1.2",
"license": "MIT"
},
"node_modules/safer-buffer": {
"version": "2.1.2",
"license": "MIT"
},
"node_modules/source-map": {
"version": "0.5.7",
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/source-map-support": {
"version": "0.5.21",
"license": "MIT",
"dependencies": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
}
},
"node_modules/source-map-support/node_modules/source-map": {
"version": "0.6.1",
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/space-separated-tokens": {
"version": "2.0.1",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
},
"node_modules/string_decoder": {
"version": "1.3.0",
"license": "MIT",
"dependencies": {
"safe-buffer": "~5.2.0"
}
},
"node_modules/string_decoder/node_modules/safe-buffer": {
"version": "5.2.1",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"license": "MIT"
},
"node_modules/strip-indent": {
"version": "4.0.0",
"license": "MIT",
"dependencies": {
"min-indent": "^1.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/style-value-types": {
"version": "4.1.4",
"dev": true,
"license": "MIT",
"dependencies": {
"hey-listen": "^1.0.8",
"tslib": "^2.1.0"
}
},
"node_modules/styled-system": {
"version": "5.1.5",
"license": "MIT",
"dependencies": {
"@styled-system/background": "^5.1.2",
"@styled-system/border": "^5.1.5",
"@styled-system/color": "^5.1.2",
"@styled-system/core": "^5.1.2",
"@styled-system/flexbox": "^5.1.2",
"@styled-system/grid": "^5.1.2",
"@styled-system/layout": "^5.1.2",
"@styled-system/position": "^5.1.2",
"@styled-system/shadow": "^5.1.2",
"@styled-system/space": "^5.1.2",
"@styled-system/typography": "^5.1.2",
"@styled-system/variant": "^5.1.5",
"object-assign": "^4.1.1"
}
},
"node_modules/stylis": {
"version": "4.0.13",
"license": "MIT"
},
"node_modules/supports-color": {
"version": "5.5.0",
"license": "MIT",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">= 0.4"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/tinycolor2": {
"version": "1.4.2",
"license": "MIT",
"engines": {
"node": "*"
}
},
"node_modules/to-fast-properties": {
"version": "2.0.0",
"license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/tr46": {
"version": "0.0.3",
"license": "MIT"
},
"node_modules/tslib": {
"version": "2.4.0",
"dev": true,
"license": "0BSD"
},
"node_modules/typescript": {
"version": "4.8.2",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=4.2.0"
}
},
"node_modules/unfurl.js": {
"version": "5.7.0",
"license": "ISC",
"dependencies": {
"debug": "^3.1.0",
"he": "^1.2.0",
"htmlparser2": "^3.9.2",
"iconv-lite": "^0.4.24",
"node-fetch": "^2.6.7",
"source-map-support": "^0.5.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/unfurl.js/node_modules/debug": {
"version": "3.2.7",
"license": "MIT",
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/unfurl.js/node_modules/dom-serializer": {
"version": "0.2.2",
"license": "MIT",
"dependencies": {
"domelementtype": "^2.0.1",
"entities": "^2.0.0"
}
},
"node_modules/unfurl.js/node_modules/dom-serializer/node_modules/domelementtype": {
"version": "2.3.0",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fb55"
}
],
"license": "BSD-2-Clause"
},
"node_modules/unfurl.js/node_modules/dom-serializer/node_modules/entities": {
"version": "2.2.0",
"license": "BSD-2-Clause",
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/unfurl.js/node_modules/domelementtype": {
"version": "1.3.1",
"license": "BSD-2-Clause"
},
"node_modules/unfurl.js/node_modules/domhandler": {
"version": "2.4.2",
"license": "BSD-2-Clause",
"dependencies": {
"domelementtype": "1"
}
},
"node_modules/unfurl.js/node_modules/domutils": {
"version": "1.7.0",
"license": "BSD-2-Clause",
"dependencies": {
"dom-serializer": "0",
"domelementtype": "1"
}
},
"node_modules/unfurl.js/node_modules/entities": {
"version": "1.1.2",
"license": "BSD-2-Clause"
},
"node_modules/unfurl.js/node_modules/htmlparser2": {
"version": "3.10.1",
"license": "MIT",
"dependencies": {
"domelementtype": "^1.3.1",
"domhandler": "^2.3.0",
"domutils": "^1.5.1",
"entities": "^1.1.1",
"inherits": "^2.0.1",
"readable-stream": "^3.1.1"
}
},
"node_modules/unfurl.js/node_modules/readable-stream": {
"version": "3.6.0",
"license": "MIT",
"dependencies": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
},
"engines": {
"node": ">= 6"
}
},
"node_modules/util-deprecate": {
"version": "1.0.2",
"license": "MIT"
},
"node_modules/w3c-keyname": {
"version": "2.2.4",
"license": "MIT"
},
"node_modules/warning": {
"version": "4.0.3",
"license": "MIT",
"dependencies": {
"loose-envify": "^1.0.0"
}
},
"node_modules/web-vitals": {
"version": "2.1.4",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/whatwg-fetch": {
"version": "3.6.2",
"dev": true,
"license": "MIT"
},
"node_modules/whatwg-url": {
"version": "5.0.0",
"license": "MIT",
"dependencies": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
}
},
"node_modules/whatwg-url/node_modules/webidl-conversions": {
"version": "3.0.1",
"license": "BSD-2-Clause"
},
"node_modules/yaml": {
"version": "1.10.2",
"license": "ISC",
"engines": {
"node": ">= 6"
}
},
"node_modules/zustand": {
"version": "3.7.2",
"license": "MIT",
"engines": {
"node": ">=12.7.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}
},
"dependencies": {
"@_ueberdosis/prosemirror-tables": {
"version": "1.1.3",
"requires": {
"prosemirror-keymap": "^1.1.2",
"prosemirror-model": "^1.8.1",
"prosemirror-state": "^1.3.1",
"prosemirror-transform": "^1.2.1",
"prosemirror-view": "^1.13.3"
}
},
"@babel/code-frame": {
"version": "7.18.6",
"requires": {
"@babel/highlight": "^7.18.6"
}
},
"@babel/helper-module-imports": {
"version": "7.18.6",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-plugin-utils": {
"version": "7.18.9"
},
"@babel/helper-string-parser": {
"version": "7.18.10"
},
"@babel/helper-validator-identifier": {
"version": "7.18.6"
},
"@babel/highlight": {
"version": "7.18.6",
"requires": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/plugin-syntax-jsx": {
"version": "7.18.6",
"requires": {
"@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/runtime": {
"version": "7.18.9",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/types": {
"version": "7.18.13",
"requires": {
"@babel/helper-string-parser": "^7.18.10",
"@babel/helper-validator-identifier": "^7.18.6",
"to-fast-properties": "^2.0.0"
}
},
"@emotion/babel-plugin": {
"version": "11.10.2",
"requires": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/plugin-syntax-jsx": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/serialize": "^1.1.0",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.0.13"
},
"dependencies": {
"@emotion/hash": {
"version": "0.9.0"
},
"@emotion/memoize": {
"version": "0.8.0"
},
"@emotion/serialize": {
"version": "1.1.0",
"requires": {
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/unitless": "^0.8.0",
"@emotion/utils": "^1.2.0",
"csstype": "^3.0.2"
}
},
"@emotion/unitless": {
"version": "0.8.0"
},
"escape-string-regexp": {
"version": "4.0.0"
}
}
},
"@emotion/cache": {
"version": "11.10.3",
"requires": {
"@emotion/memoize": "^0.8.0",
"@emotion/sheet": "^1.2.0",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"stylis": "4.0.13"
},
"dependencies": {
"@emotion/memoize": {
"version": "0.8.0"
}
}
},
"@emotion/is-prop-valid": {
"version": "0.8.8",
"requires": {
"@emotion/memoize": "0.7.4"
}
},
"@emotion/memoize": {
"version": "0.7.4"
},
"@emotion/react": {
"version": "11.10.0",
"requires": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/cache": "^11.10.0",
"@emotion/serialize": "^1.1.0",
"@emotion/utils": "^1.2.0",
"@emotion/weak-memoize": "^0.3.0",
"hoist-non-react-statics": "^3.3.1"
},
"dependencies": {
"@emotion/hash": {
"version": "0.9.0"
},
"@emotion/memoize": {
"version": "0.8.0"
},
"@emotion/serialize": {
"version": "1.1.0",
"requires": {
"@emotion/hash": "^0.9.0",
"@emotion/memoize": "^0.8.0",
"@emotion/unitless": "^0.8.0",
"@emotion/utils": "^1.2.0",
"csstype": "^3.0.2"
}
},
"@emotion/unitless": {
"version": "0.8.0"
},
"csstype": {
"version": "3.1.0"
}
}
},
"@emotion/sheet": {
"version": "1.2.0"
},
"@emotion/utils": {
"version": "1.2.0"
},
"@emotion/weak-memoize": {
"version": "0.3.0"
},
"@mdi/js": {
"version": "6.9.96"
},
"@mdi/react": {
"version": "1.6.0",
"requires": {
"prop-types": "^15.7.2"
}
},
"@social-embed/lib": {
"version": "0.0.1-next.12"
},
"@styled-system/background": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/border": {
"version": "5.1.5",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/color": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/core": {
"version": "5.1.2",
"requires": {
"object-assign": "^4.1.1"
}
},
"@styled-system/css": {
"version": "5.1.5"
},
"@styled-system/flexbox": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/grid": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/layout": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/position": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/shadow": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/should-forward-prop": {
"version": "5.1.5",
"requires": {
"@emotion/is-prop-valid": "^0.8.1",
"@emotion/memoize": "^0.7.1",
"styled-system": "^5.1.5"
}
},
"@styled-system/space": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/typography": {
"version": "5.1.2",
"requires": {
"@styled-system/core": "^5.1.2"
}
},
"@styled-system/variant": {
"version": "5.1.5",
"requires": {
"@styled-system/core": "^5.1.2",
"@styled-system/css": "^5.1.5"
}
},
"@theme-ui/components": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/components/-/components-0.14.7.tgz",
"integrity": "sha512-iIzqBvRL8GNVkzuZinxInYNFW/38pvqqthuCgLsnOC0/A4Q4v13mn/fxlZa6pJjwouswsRLOrkd63bS7Svzkfw==",
"requires": {
"@styled-system/color": "^5.1.2",
"@styled-system/should-forward-prop": "^5.1.2",
"@styled-system/space": "^5.1.2",
"@theme-ui/css": "0.14.7",
"@types/styled-system": "^5.1.13"
}
},
"@theme-ui/core": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/core/-/core-0.14.7.tgz",
"integrity": "sha512-u60cKOZYsGDG9sSoM4jYj743OpNXXU27f7vXGwrO/B1t/1sv1MAQA0R8HtVwoi9DyOIcOmWfMWYTiMg+4vV1MA==",
"requires": {
"@theme-ui/css": "0.14.7",
"@theme-ui/parse-props": "0.14.7",
"deepmerge": "^4.2.2"
}
},
"@theme-ui/css": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/css/-/css-0.14.7.tgz",
"integrity": "sha512-DbGw0T4MrTjiRs6lnyYgSD2TV/LvFErzDDpm0ICPL2KqDwqgHX4mFpDafj8/DkyCO9wx2KEiUuE+0NtOlR3i4w==",
"requires": {
"csstype": "^3.0.10"
}
},
"@theme-ui/parse-props": {
"version": "0.14.7",
"resolved": "https://registry.npmjs.org/@theme-ui/parse-props/-/parse-props-0.14.7.tgz",
"integrity": "sha512-qF10mAYs3wcIkSU5ZSbmHUngwTkPS87D23qg1ArbeO+m+/e4uqOy0+6W0Lt/4JTP7lnWWsCYuScK3F3hOp2q0w==",
"requires": {
"@theme-ui/css": "0.14.7"
}
},
"@tiptap/core": {
"version": "2.0.0-beta.182",
"requires": {
"prosemirror-commands": "1.3.0",
"prosemirror-keymap": "1.2.0",
"prosemirror-model": "1.18.1",
"prosemirror-schema-list": "1.2.0",
"prosemirror-state": "1.4.1",
"prosemirror-transform": "1.6.0",
"prosemirror-view": "1.26.2"
}
},
"@tiptap/extension-blockquote": {
"version": "2.0.0-beta.29"
},
"@tiptap/extension-bold": {
"version": "2.0.0-beta.28"
},
"@tiptap/extension-bullet-list": {
"version": "2.0.0-beta.29"
},
"@tiptap/extension-character-count": {
"version": "2.0.0-beta.31",
"requires": {
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1"
}
},
"@tiptap/extension-code": {
"version": "2.0.0-beta.28"
},
"@tiptap/extension-code-block": {
"version": "2.0.0-beta.42",
"requires": {
"prosemirror-state": "1.4.1"
}
},
"@tiptap/extension-color": {
"version": "2.0.0-beta.12"
},
"@tiptap/extension-document": {
"version": "2.0.0-beta.17"
},
"@tiptap/extension-dropcursor": {
"version": "2.0.0-beta.29",
"requires": {
"prosemirror-dropcursor": "1.5.0"
}
},
"@tiptap/extension-font-family": {
"version": "2.0.0-beta.24"
},
"@tiptap/extension-gapcursor": {
"version": "2.0.0-beta.39",
"requires": {
"prosemirror-gapcursor": "1.3.0"
}
},
"@tiptap/extension-hard-break": {
"version": "2.0.0-beta.33"
},
"@tiptap/extension-heading": {
"version": "2.0.0-beta.29"
},
"@tiptap/extension-history": {
"version": "2.0.0-beta.26",
"requires": {
"prosemirror-history": "1.3.0"
}
},
"@tiptap/extension-horizontal-rule": {
"version": "2.0.0-beta.36",
"requires": {
"prosemirror-state": "1.4.1"
}
},
"@tiptap/extension-italic": {
"version": "2.0.0-beta.28"
},
"@tiptap/extension-link": {
"version": "2.0.0-beta.43",
"requires": {
"linkifyjs": "^3.0.5",
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1"
}
},
"@tiptap/extension-list-item": {
"version": "2.0.0-beta.23"
},
"@tiptap/extension-ordered-list": {
"version": "2.0.0-beta.30"
},
"@tiptap/extension-paragraph": {
"version": "2.0.0-beta.26"
},
"@tiptap/extension-placeholder": {
"version": "2.0.0-beta.53",
"requires": {
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1",
"prosemirror-view": "1.26.2"
}
},
"@tiptap/extension-strike": {
"version": "2.0.0-beta.29"
},
"@tiptap/extension-subscript": {
"version": "2.0.0-beta.13"
},
"@tiptap/extension-superscript": {
"version": "2.0.0-beta.13"
},
"@tiptap/extension-table": {
"version": "2.0.0-beta.54",
"requires": {
"@_ueberdosis/prosemirror-tables": "1.1.3",
"prosemirror-model": "1.18.1",
"prosemirror-state": "1.4.1",
"prosemirror-view": "1.26.2"
}
},
"@tiptap/extension-table-cell": {
"version": "2.0.0-beta.23"
},
"@tiptap/extension-table-header": {
"version": "2.0.0-beta.25"
},
"@tiptap/extension-table-row": {
"version": "2.0.0-beta.22"
},
"@tiptap/extension-task-item": {
"version": "2.0.0-beta.37"
},
"@tiptap/extension-task-list": {
"version": "2.0.0-beta.29"
},
"@tiptap/extension-text": {
"version": "2.0.0-beta.17"
},
"@tiptap/extension-text-align": {
"version": "2.0.0-beta.31"
},
"@tiptap/extension-text-style": {
"version": "2.0.0-beta.26"
},
"@tiptap/extension-underline": {
"version": "2.0.0-beta.25"
},
"@tiptap/starter-kit": {
"version": "2.0.0-beta.190",
"requires": {
"@tiptap/core": "^2.0.0-beta.181",
"@tiptap/extension-blockquote": "^2.0.0-beta.29",
"@tiptap/extension-bold": "^2.0.0-beta.28",
"@tiptap/extension-bullet-list": "^2.0.0-beta.29",
"@tiptap/extension-code": "^2.0.0-beta.28",
"@tiptap/extension-code-block": "^2.0.0-beta.42",
"@tiptap/extension-document": "^2.0.0-beta.17",
"@tiptap/extension-dropcursor": "^2.0.0-beta.29",
"@tiptap/extension-gapcursor": "^2.0.0-beta.39",
"@tiptap/extension-hard-break": "^2.0.0-beta.33",
"@tiptap/extension-heading": "^2.0.0-beta.29",
"@tiptap/extension-history": "^2.0.0-beta.26",
"@tiptap/extension-horizontal-rule": "^2.0.0-beta.36",
"@tiptap/extension-italic": "^2.0.0-beta.28",
"@tiptap/extension-list-item": "^2.0.0-beta.23",
"@tiptap/extension-ordered-list": "^2.0.0-beta.30",
"@tiptap/extension-paragraph": "^2.0.0-beta.26",
"@tiptap/extension-strike": "^2.0.0-beta.29",
"@tiptap/extension-text": "^2.0.0-beta.17"
}
},
"@types/hast": {
"version": "2.3.4",
"requires": {
"@types/unist": "*"
}
},
"@types/katex": {
"version": "0.14.0",
"dev": true
},
"@types/parse-json": {
"version": "4.0.0"
},
"@types/prismjs": {
"version": "1.26.0"
},
"@types/prop-types": {
"version": "15.7.5",
"dev": true
},
"@types/react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz",
"integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==",
"dev": true,
"requires": {
"@types/prop-types": "*",
"csstype": "^3.0.2"
}
},
"@types/react-color": {
"version": "3.0.6",
"dev": true,
"requires": {
"@types/react": "*",
"@types/reactcss": "*"
}
},
"@types/react-dom": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.2.tgz",
"integrity": "sha512-Icd9KEgdnFfJs39KyRyr0jQ7EKhq8U6CcHRMGAS45fp5qgUvxL3ujUCfWFttUK2UErqZNj97t9gsVPNAqcwoCg==",
"dev": true,
"requires": {
"@types/react": "*"
}
},
"@types/react-modal": {
"version": "3.13.1",
"dev": true,
"requires": {
"@types/react": "*"
}
},
"@types/reactcss": {
"version": "1.2.6",
"dev": true,
"requires": {
"@types/react": "*"
}
},
"@types/styled-system": {
"version": "5.1.15",
"resolved": "https://registry.npmjs.org/@types/styled-system/-/styled-system-5.1.15.tgz",
"integrity": "sha512-1uls4wipZn8FtYFZ7upRVFDoEeOXTQTs2zuyOZPn02T6rjIxtvj2P2lG5qsxXHhKuKsu3thveCZrtaeLE/ibLg==",
"requires": {
"csstype": "^3.0.2"
}
},
"@types/tinycolor2": {
"version": "1.4.3",
"dev": true
},
"@types/unist": {
"version": "2.0.6"
},
"ansi-styles": {
"version": "3.2.1",
"requires": {
"color-convert": "^1.9.0"
}
},
"babel-plugin-macros": {
"version": "3.1.0",
"requires": {
"@babel/runtime": "^7.12.5",
"cosmiconfig": "^7.0.0",
"resolve": "^1.19.0"
}
},
"buffer-from": {
"version": "1.1.2"
},
"callsites": {
"version": "3.1.0"
},
"chalk": {
"version": "2.4.2",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"character-entities": {
"version": "2.0.1"
},
"character-entities-legacy": {
"version": "3.0.0"
},
"character-reference-invalid": {
"version": "2.0.1"
},
"color-convert": {
"version": "1.9.3",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3"
},
"comma-separated-tokens": {
"version": "2.0.2"
},
"convert-source-map": {
"version": "1.8.0",
"requires": {
"safe-buffer": "~5.1.1"
}
},
"cosmiconfig": {
"version": "7.0.1",
"requires": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
"parse-json": "^5.0.0",
"path-type": "^4.0.0",
"yaml": "^1.10.0"
}
},
"csstype": {
"version": "3.1.0"
},
"decode-named-character-reference": {
"version": "1.0.1",
"requires": {
"character-entities": "^2.0.0"
}
},
"deepmerge": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
"integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
},
"detect-indent": {
"version": "7.0.0"
},
"error-ex": {
"version": "1.3.2",
"requires": {
"is-arrayish": "^0.2.1"
}
},
"escape-string-regexp": {
"version": "1.0.5"
},
"exenv": {
"version": "1.2.2"
},
"find-root": {
"version": "1.1.0"
},
"framer-motion": {
"version": "4.1.17",
"dev": true,
"requires": {
"@emotion/is-prop-valid": "^0.8.2",
"framesync": "5.3.0",
"hey-listen": "^1.0.8",
"popmotion": "9.3.6",
"style-value-types": "4.1.4",
"tslib": "^2.1.0"
}
},
"framesync": {
"version": "5.3.0",
"dev": true,
"requires": {
"tslib": "^2.1.0"
}
},
"function-bind": {
"version": "1.1.1"
},
"has": {
"version": "1.0.3",
"requires": {
"function-bind": "^1.1.1"
}
},
"has-flag": {
"version": "3.0.0"
},
"hast-util-parse-selector": {
"version": "3.1.0",
"requires": {
"@types/hast": "^2.0.0"
}
},
"hastscript": {
"version": "7.0.2",
"requires": {
"@types/hast": "^2.0.0",
"comma-separated-tokens": "^2.0.0",
"hast-util-parse-selector": "^3.0.0",
"property-information": "^6.0.0",
"space-separated-tokens": "^2.0.0"
}
},
"he": {
"version": "1.2.0"
},
"hey-listen": {
"version": "1.0.8",
"dev": true
},
"hoist-non-react-statics": {
"version": "3.3.2",
"requires": {
"react-is": "^16.7.0"
}
},
"iconv-lite": {
"version": "0.4.24",
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
}
},
"import-fresh": {
"version": "3.3.0",
"requires": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
}
},
"inherits": {
"version": "2.0.4"
},
"is-alphabetical": {
"version": "2.0.1"
},
"is-alphanumerical": {
"version": "2.0.1",
"requires": {
"is-alphabetical": "^2.0.0",
"is-decimal": "^2.0.0"
}
},
"is-arrayish": {
"version": "0.2.1"
},
"is-core-module": {
"version": "2.9.0",
"requires": {
"has": "^1.0.3"
}
},
"is-decimal": {
"version": "2.0.1"
},
"is-hexadecimal": {
"version": "2.0.1"
},
"isomorphic-fetch": {
"version": "3.0.0",
"dev": true,
"requires": {
"node-fetch": "^2.6.1",
"whatwg-fetch": "^3.4.1"
}
},
"js-tokens": {
"version": "4.0.0"
},
"json-parse-even-better-errors": {
"version": "2.3.1"
},
"katex": {
"version": "0.16.0",
"requires": {
"commander": "^8.0.0"
},
"dependencies": {
"commander": {
"version": "8.3.0"
}
}
},
"lines-and-columns": {
"version": "1.2.4"
},
"linkifyjs": {
"version": "3.0.5"
},
"loose-envify": {
"version": "1.4.0",
"requires": {
"js-tokens": "^3.0.0 || ^4.0.0"
}
},
"min-indent": {
"version": "1.0.1"
},
"ms": {
"version": "2.1.2"
},
"node-fetch": {
"version": "2.6.7",
"requires": {
"whatwg-url": "^5.0.0"
}
},
"object-assign": {
"version": "4.1.1"
},
"orderedmap": {
"version": "2.0.0"
},
"parent-module": {
"version": "1.0.1",
"requires": {
"callsites": "^3.0.0"
}
},
"parse-entities": {
"version": "4.0.0",
"requires": {
"@types/unist": "^2.0.0",
"character-entities": "^2.0.0",
"character-entities-legacy": "^3.0.0",
"character-reference-invalid": "^2.0.0",
"decode-named-character-reference": "^1.0.0",
"is-alphanumerical": "^2.0.0",
"is-decimal": "^2.0.0",
"is-hexadecimal": "^2.0.0"
}
},
"parse-json": {
"version": "5.2.0",
"requires": {
"@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
"json-parse-even-better-errors": "^2.3.0",
"lines-and-columns": "^1.1.6"
}
},
"path-parse": {
"version": "1.0.7"
},
"path-type": {
"version": "4.0.0"
},
"popmotion": {
"version": "9.3.6",
"dev": true,
"requires": {
"framesync": "5.3.0",
"hey-listen": "^1.0.8",
"style-value-types": "4.1.4",
"tslib": "^2.1.0"
}
},
"prism-themes": {
"version": "1.9.0"
},
"prop-types": {
"version": "15.8.1",
"requires": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
"react-is": "^16.13.1"
}
},
"property-information": {
"version": "6.1.1"
},
"prosemirror-codemark": {
"version": "0.4.0"
},
"prosemirror-commands": {
"version": "1.3.0",
"requires": {
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.0.0"
}
},
"prosemirror-dropcursor": {
"version": "1.5.0",
"requires": {
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.1.0",
"prosemirror-view": "^1.1.0"
}
},
"prosemirror-gapcursor": {
"version": "1.3.0",
"requires": {
"prosemirror-keymap": "^1.0.0",
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-view": "^1.0.0"
}
},
"prosemirror-history": {
"version": "1.3.0",
"requires": {
"prosemirror-state": "^1.2.2",
"prosemirror-transform": "^1.0.0",
"rope-sequence": "^1.3.0"
}
},
"prosemirror-keymap": {
"version": "1.2.0",
"requires": {
"prosemirror-state": "^1.0.0",
"w3c-keyname": "^2.2.0"
}
},
"prosemirror-model": {
"version": "1.18.1",
"requires": {
"orderedmap": "^2.0.0"
}
},
"prosemirror-schema-list": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.2.0.tgz",
"integrity": "sha512-8PT/9xOx1HHdC7fDNNfhQ50Z8Mzu7nKyA1KCDltSpcZVZIbB0k7KtsHrnXyuIhbLlScoymBiLZ00c5MH6wdFsA==",
"requires": {
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.0.0"
}
},
"prosemirror-state": {
"version": "1.4.1",
"requires": {
"prosemirror-model": "^1.0.0",
"prosemirror-transform": "^1.0.0"
}
},
"prosemirror-transform": {
"version": "1.6.0",
"requires": {
"prosemirror-model": "^1.0.0"
}
},
"prosemirror-utils": {
"version": "git+ssh://git@github.com/atlassian/prosemirror-utils.git#1b97ff08f1bbaea781f205744588a3dfd228b0d1",
"from": "prosemirror-utils@github:atlassian/prosemirror-utils"
},
"prosemirror-view": {
"version": "1.26.2",
"requires": {
"prosemirror-model": "^1.16.0",
"prosemirror-state": "^1.0.0",
"prosemirror-transform": "^1.1.0"
}
},
"re-resizable": {
"version": "6.9.9"
},
"react-colorful": {
"version": "5.5.1"
},
"react-is": {
"version": "16.13.1"
},
"react-lifecycles-compat": {
"version": "3.0.4"
},
"react-modal": {
"version": "3.15.1",
"requires": {
"exenv": "^1.2.0",
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.0",
"warning": "^4.0.3"
}
},
"redent": {
"version": "4.0.0",
"requires": {
"indent-string": "^5.0.0",
"strip-indent": "^4.0.0"
},
"dependencies": {
"indent-string": {
"version": "5.0.0"
}
}
},
"refractor": {
"version": "4.7.0",
"requires": {
"@types/hast": "^2.0.0",
"@types/prismjs": "^1.0.0",
"hastscript": "^7.0.0",
"parse-entities": "^4.0.0"
}
},
"regenerator-runtime": {
"version": "0.13.9"
},
"resolve": {
"version": "1.22.0",
"requires": {
"is-core-module": "^2.8.1",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
}
},
"resolve-from": {
"version": "4.0.0"
},
"rope-sequence": {
"version": "1.3.3"
},
"safe-buffer": {
"version": "5.1.2"
},
"safer-buffer": {
"version": "2.1.2"
},
"source-map": {
"version": "0.5.7"
},
"source-map-support": {
"version": "0.5.21",
"requires": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
},
"dependencies": {
"source-map": {
"version": "0.6.1"
}
}
},
"space-separated-tokens": {
"version": "2.0.1"
},
"string_decoder": {
"version": "1.3.0",
"requires": {
"safe-buffer": "~5.2.0"
},
"dependencies": {
"safe-buffer": {
"version": "5.2.1"
}
}
},
"strip-indent": {
"version": "4.0.0",
"requires": {
"min-indent": "^1.0.1"
}
},
"style-value-types": {
"version": "4.1.4",
"dev": true,
"requires": {
"hey-listen": "^1.0.8",
"tslib": "^2.1.0"
}
},
"styled-system": {
"version": "5.1.5",
"requires": {
"@styled-system/background": "^5.1.2",
"@styled-system/border": "^5.1.5",
"@styled-system/color": "^5.1.2",
"@styled-system/core": "^5.1.2",
"@styled-system/flexbox": "^5.1.2",
"@styled-system/grid": "^5.1.2",
"@styled-system/layout": "^5.1.2",
"@styled-system/position": "^5.1.2",
"@styled-system/shadow": "^5.1.2",
"@styled-system/space": "^5.1.2",
"@styled-system/typography": "^5.1.2",
"@styled-system/variant": "^5.1.5",
"object-assign": "^4.1.1"
}
},
"stylis": {
"version": "4.0.13"
},
"supports-color": {
"version": "5.5.0",
"requires": {
"has-flag": "^3.0.0"
}
},
"supports-preserve-symlinks-flag": {
"version": "1.0.0"
},
"tinycolor2": {
"version": "1.4.2"
},
"to-fast-properties": {
"version": "2.0.0"
},
"tr46": {
"version": "0.0.3"
},
"tslib": {
"version": "2.4.0",
"dev": true
},
"typescript": {
"version": "4.8.2",
"dev": true
},
"unfurl.js": {
"version": "5.7.0",
"requires": {
"debug": "^3.1.0",
"he": "^1.2.0",
"htmlparser2": "^3.9.2",
"iconv-lite": "^0.4.24",
"node-fetch": "^2.6.7",
"source-map-support": "^0.5.9"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"requires": {
"ms": "^2.1.1"
}
},
"dom-serializer": {
"version": "0.2.2",
"requires": {
"domelementtype": "^2.0.1",
"entities": "^2.0.0"
},
"dependencies": {
"domelementtype": {
"version": "2.3.0"
},
"entities": {
"version": "2.2.0"
}
}
},
"domelementtype": {
"version": "1.3.1"
},
"domhandler": {
"version": "2.4.2",
"requires": {
"domelementtype": "1"
}
},
"domutils": {
"version": "1.7.0",
"requires": {
"dom-serializer": "0",
"domelementtype": "1"
}
},
"entities": {
"version": "1.1.2"
},
"htmlparser2": {
"version": "3.10.1",
"requires": {
"domelementtype": "^1.3.1",
"domhandler": "^2.3.0",
"domutils": "^1.5.1",
"entities": "^1.1.1",
"inherits": "^2.0.1",
"readable-stream": "^3.1.1"
}
},
"readable-stream": {
"version": "3.6.0",
"requires": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
}
}
}
},
"util-deprecate": {
"version": "1.0.2"
},
"w3c-keyname": {
"version": "2.2.4"
},
"warning": {
"version": "4.0.3",
"requires": {
"loose-envify": "^1.0.0"
}
},
"web-vitals": {
"version": "2.1.4",
"dev": true
},
"whatwg-fetch": {
"version": "3.6.2",
"dev": true
},
"whatwg-url": {
"version": "5.0.0",
"requires": {
"tr46": "~0.0.3",
"webidl-conversions": "^3.0.0"
},
"dependencies": {
"webidl-conversions": {
"version": "3.0.1"
}
}
},
"yaml": {
"version": "1.10.2"
},
"zustand": {
"version": "3.7.2"
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/thinkinpg/notesnook.git
git@gitee.com:thinkinpg/notesnook.git
thinkinpg
notesnook
notesnook
master

搜索帮助