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 🙏

© 2025 – Pkg Stats / Ryan Hefner

dazscript-framework

v0.1.15

Published

The **DazScript Framework** is a TypeScript-based framework for writing Daz Studio scripts. It provides all the advantages of a typed language such as autocompletion, error checking, and method parameter documentation and hinting. The framework also inclu

Downloads

51

Readme

DazScript Framework

The DazScript Framework is a TypeScript-based framework for writing Daz Studio scripts. It provides all the advantages of a typed language such as autocompletion, error checking, and method parameter documentation and hinting. The framework also includes a set of dialog helpers for rapid UI development.

Benefits

  • Autocompletion: Take advantage of IDE autocompletion for faster and more efficient script development.
  • Error Checking: Catch potential errors early in the development process with TypeScript's static analysis.
  • Method Documentation & Hinting: Get contextual documentation and hints for methods, classes, and parameters.

Features

  • TypeScript support with full IntelliSense.
  • A powerful set of decorators and helper methods for building interactive scripts.
  • Easy integration with Daz Studio for quick script deployment.

Installation

To install the DazScript Framework, run the following command:

npm install dazscript-framework

Setup

After installing the package, you will need to configure a few files for your project.

  1. babel.config.js

    Create the file and add the following content:

    const sharedBabelConfig = require('dazscript-framework/babel');
    
    module.exports = {
      ...sharedBabelConfig,
      presets: [...sharedBabelConfig.presets],
      plugins: [...sharedBabelConfig.plugins],
    };
  2. package.json

    Add the following scripts to your package.json:

    "scripts": {
        "prebuild": "npm run installer",
        "build": "webpack --env outputPath=./out",
        "postbuild": "npm run icons",
        "watch": "webpack --env outputPath=./out --watch",
        "icons": "copyfiles -u 1 src/**/*.png out/",
        "installer": "node ./node_modules/dazscript-framework/dist/scripts/install-generator.js -p ./src/scripts -m /My Scripts"
    }
  3. tsconfig.json

    Create the file and add the following content:

    {
      "extends": "./node_modules/dazscript-framework/tsconfig.json",
      "compilerOptions": {
        "baseUrl": "./",
        "paths": {
          "shared/*": ["src/shared/*"],
          "@dst/*": ["node_modules/dazscript-types/*"],
          "@dsf/*": ["node_modules/dazscript-framework/src/*"]
        }
      },
      "include": ["node_modules/dazscript-types/**/*", "src/**/*"]
    }
  4. webpack.config.js Create the file and add the following content:

    const sharedWebpackConfig = require('dazscript-framework/webpack');
    
    module.exports = (env, argv) => {
      const sharedConfig = sharedWebpackConfig(env, argv);
    
      return {
        ...sharedConfig,
        // You can override or add more customizations here if needed
      };
    };

Usage