Skip to content
This repository was archived by the owner on Jul 21, 2026. It is now read-only.

ScriptingApp/Package-Manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Package Manager — Deprecated

This project is deprecated. Scripting now includes built-in npm package support, so this standalone package manager is no longer needed. This repository is kept for historical reference only.

Install npm packages in Scripting

  1. Open the npm Packages page in the Scripting app.
  2. Search for and install the packages your script needs.
  3. Declare those packages in your script project's package.json file so that its dependencies are tracked and available to the script.

For example, create or update package.json in the root of your script project:

{
  "dependencies": {
    "dayjs": "^1.11.13"
  }
}

Then import the package in your script as usual:

import dayjs from "dayjs";

Please use the built-in npm package workflow in Scripting for all new projects.

About

A package manager for Scripting app that allows users to install packages from npm and download the bundled JS files.

Resources

License

Stars

8 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors