npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tern-def-tbext

v1.45.0

Published

tern definition file for Thunderbird Extension.

Downloads

185

Readme

tern-def-tbext

Screenshot

At ver 0.1.0, webextensions-desktop-nightly.json is included. since ver 1.0.0, that file is droped, because it is irrelevant.

  • Thunderbird extension definition files for tern.
    • for completion
  • Thunderbird WebExtension APIs
  • all things are rough.
  • this does not include any URL of online doc for Thunderbird extension (MDN does not support. comment)
  • npm package provides definition-file.
    • distilled from comm-central and mozilla-central repositories.

how to use with tern

I confirmed only with vim. install tern-for-vim and add to project's .tern-project file. This package include a definition-file.

{
  "libs": [
    "browser",
    "node_modules/tern-def-tbext/defs/tbext-nightly"
  ]
}

make definition files

$ npm run build -- --mozilla-repo /path/to/mozilla --comm-repo /path/to/comm

This create only tbext-nightly.json definition-file.

Notice Since ver. 1.1.1, --mozilla-repo is necessary to include Firefox APIs.

(At 2019-04-11) You will see following error messages, but no problem.

> [email protected] build X:\path\to\tern-def-tbext
> node build.js "--mozilla-repo" "x:/repository/mozilla-central" "--comm-repo" "x:/repository/mozilla-central/comm"
"--shrink"

(API: commAPI, Schema Name: commands): Error: ENOENT: no such file or directory, open 'x:\repository\mozilla-central\comm\mail\components\extensions\schemas\commands.json'
(API: commAPI, Schema Name: geckoProfiler): Error: ENOENT: no such file or directory, open 'x:\repository\mozilla-central\comm\toolkit\components\extensions\schemas\geckoProfiler.json'
WARN:split over some files menus
  Problem:dup at menus !doc
(API: commAPI, Schema Name: pkcs11): Error: ENOENT: no such file or directory, open 'x:\repository\mozilla-central\comm\mail\components\extensions\schemas\pkcs11.json'

use not nightly

In case of that you would like to use beta.

$ npm run build -- --mozilla-repo /path/to/mozilla-beta --comm-repo /path/to/comm-beta --channel beta

This create tbext-beta.json. --channel option only effects to filename. Using this option is for switching files specified within .tern-project. If you don't need to switch, there is no need for this option.

License

MPL-2.0.

npm package includes json files. These contains contents which come from json schema files of comm-central repository. Some ones are under 3-Clause BSD License, others are under MPL-2.0 License. Both are in License directory.

Release Notes

  • 0.1.0 initial release.

  • 1.0.0 webextensions-desktop-nightly.json is droped.

  • 1.1.0 browser.compose

  • 1.1.1 fix: add Firefox APIs.

    • contentScripts
    • experiments
    • extension
    • i18n
    • management
    • permissions
    • pkcs11
    • runtime
    • theme
  • 1.2.0 geckoProfiler

  • 1.3.0 fix: pick up getTargetElement() of menus API. fix: the place of commands API files changed.

  • 1.4.0 new functions

    • browser.accounts.createSubfolder()
    • browser.accounts.renameFolder()
    • browser.accounts.deleteFolder()
  • 1.5.0 new function

    • browser.contacts.quickSearch()
  • 1.6.0 new function

    • browser.messages.archive()
  • 1.7.0 new API folders and permission accountsFolders

    • MailFolder move from accounts to folders
    • browser.accounts.createSubolder etc. move to browser.folders
  • 1.8.0 new arg id of contacts.create()

  • 1.9.0 new property mailTabs.QuickFilterTextDetail

  • 1.10.0 New: query() function of messages API 1531317

  • 1.11.0 New: getProfileAsGzippedArrayBuffer() function of geckoProfiler API 1551992

  • 1.12.0 New: dumpProfileToFile() of geckoProfiler API 1552845

  • 1.13.0 New: messageDisplay API 1575708

  • 1.14.0 New: messageDisplayAction API 1531597

  • 1.15.0

    • Removal: settingsUrl of CloudFile API 1581496
    • Removal: sender from mailTabs API 1581498
  • 1.16.0 New: getRaw() of messages API 1525274

  • 1.17.0 New: subFolders of folders.MailFolder 1606584

  • 1.18.0 New: onBeforeSend() of compose API 1532528

  • 1.19.0

    • New: getComposeDetails()/setComposeDetails of compose API 1590121
    • fix: failed to include many top level definitions
  • 2020-02-09 (NO RELEASE) New permission compose 1613562

  • 2020-02-11 (NO RELEASE. This project does not handle the details of arguments of each function.)

    • Removal: legacy API 1614237
    • New: tags property in argument of query() of messages API. / Change: tags property in argument of setQuickFilter() of mailTab API 1600547
  • 2020-02-20 1.20.0

    • New: tabId argument of onBeforeSend() of compose API / New: tabId argument of onClicked() of composeAction API 1615934
  • 2020-02-25 1.21.0 Change and New: argument of some functions; onClicked() of browserAction, onBeforeSend() of compose, onClicked() of composeAction, onClicked() of messageDisplayAction 1617514

  • 2020-03-10 1.22.0

    • New: onNewMailReceived() of messages API 1599380
    • New: plainTextBody and isPlainText properties in arguments of functions of compose API 1613534
  • 2020-03-28 1.23.0 New: setDefaultIdentity() of accounts API 1531593

  • 2020-04-01 New: details argument of beginReply() of compose API

  • 2020-10-26 very many changes from April To October. This may fail to handle informations about mail/components/extensions/schemas/extensionScripts.json.

  • 2020-11-28 1.25.0 New: setLabel() and getLabel() of browser_action, compose_action, and message_display_action 1583478

  • 2020-11-28 1.26.0 New: openDefaultBrowser() of windows 1664708

  • 2020-12-10 1.27.0

    • New: getDefault() and getDefaultIdentity() of accounts API 1681141
    • New schema file: toolkit/components/extensions/schemas/browsing_data.json
  • 2021-02-04 1.27.1 fix: some APIs are not included

  • 2021-02-23 1.28.0 New: type property of ComposeDetails of compose API 1677062

  • 2021-02-26 No Release: only docstring 1681131

  • 2021-03-05 1.29.0 Modified: arguments of onShown() and onClicked() of menus API 1625746

  • 2021-03-05 1.30.0 New: from property of argument of functions of compose API; beginNew(), beginReply(), beginForward(), setComposeDetails(), onBeforeSend(). 1691253

  • 2021-03-11 1.31.0 New: listAttachments() and getAttachmentFile() of messages API 1550960

  • 2021-03-13 No Release: only docstring 1697743

  • 2021-04-06 1.32.0 New: get() and getCurrent() of mailTabs API 1698306

    Modified: new argument callback for query() and getSelectedMessages()

  • 2021-04-08 1.33.0 1703276

    • Modified: new argument callback for list(), get(), getDefault() and getDefaultIdentity() of accounts API
    • Modified: new argument callback for list(), get(), create() of addressBooks API
    • Modified: new argument callback for isEnabled() of browserAction API
    • Modified: new argument callback for getAccount(), getAllAccounts(), updateAccount() of cloudFile API
    • Modified: new argument callback for beginNew(), beginReply(), beginForward() and getComposeDetails() of compose API

    Removed: get() and getCurrent() of mailTabs API in 1.32.0

  • 2021-04-09 1.34.0 New(again): get() and getCurrent() of mailTabs API 1698306

  • 2021-04-18 1.35.0 New: fieldId for onShown() and onClicked() of menus API 1656506

  • 2021-04-30 No Update 1708187

  • 2021-05-22 No Update: property of details argument of browserAction.setIcon(), or so. 1712058

  • 2021-05-28 1.36.0 New: sendMessage(), getComposeState() and onComposeStateChanged() of compose API 1699672

  • 2021-06-14 No Update 1605937

  • 2021-06-18 1.37.0 New: identity API. 10 functions. 1642690

  • 2021-06-25 1.38.0 New: provider.onSearchRequest() of addressBooks API 1670752

  • 2021-07-02 1.39.0 New: onUpdated(), onMoved(), onCopied(), onDeleted() of messages API 1627604

  • 2021-07-06 No Update 1719091

  • 2021-07-08 No Update 1616114

  • 2021-07-08 1.40.0 Modified: new tab argument for onFileUpload(), onFileUploadAbort(), onFileDeleted() of cloudFile API 1674374

  • 2021-07-13 1.41.0 Removed: accountsFolders permission

    • viewType property for callback function of query(), get(), getCurrent() of mailTab API. 1719093

    • includeFolders argument of list(), get(), getDefault() of accounts API.

    • And change in arguments of create() of folders API.

    • And New: getParentFolders(), getSubFolders() of folders API.

    • And accountsFolders permission was removed from manifest-wide permissions array. 1520427

    • maybe nothing. 1719908

  • 2021-07-14 1.42.0 1719813

    • Modified: argument of quickSearch() of contacts API.

    • remote property for many functions.

      • list(), get(), onCreated(), onUpdated() of addressBooks API.
      • Contact information of contacts API and others.
      • MailingLists information of mailingLists API and others.
  • maybe completion fails for addressBooks.provider.onSearchRequest().

  • 2021-07-20 1.43.0 New: type property of tab object, for many place. 1720662

  • 2021-07-21 1.44.0 New: many for folders API. 1708644

    • New callback argument for create(), rename()
    • New functions. move(), copy(), getFolderInfo() "onFolderInfoChanged": {
    • onCreated(), onRenamed(), onMoved(), onCopied(), onDeleted(), ()
  • 2021-08-27 1.45.0 New: resetScrollPosition property of argument of captureTab() and captureVisibleTab() of tabs API. 1708403