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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@shadowgames/cs1-specifications

v1.2.7

Published

CS1 Project Specifications and Documentation

Readme

CS1 Specifications

NPM package containing all CS1 project specifications and documentation.

Description

This package provides programmatic access to the CS1 project specification documents, including process forms, models, user stories, and implementation tasks. It's designed to be consumed by the CS1 frontend application for the Development Tracker dashboard.

Installation

npm install @shadowgames/cs1-specifications

Usage

import {
  specifications,
  documentTree,
  getDocument,
  getPipelineStatus,
  getFilteredDocumentTree
} from '@shadowgames/cs1-specifications';

// Get all specifications as an object
console.log(specifications);

// Get the document tree structure
const tree = getFilteredDocumentTree();

// Get a specific document
const content = getDocument('PIPELINE-STATUS.md');

// Get pipeline status
const status = getPipelineStatus();

Development

Building the Package

The package automatically builds when installing dependencies:

npm install

To manually rebuild:

npm run build

This will:

  1. Compile TypeScript files
  2. Read all specification files from ../.specifications/
  3. Generate dist/specifications-data.js with all content
  4. Copy specification files to specifications/ directory

Publishing Updates

When specifications change:

# Increment version
npm version patch  # or minor/major

# Build and publish
npm run build
npm publish

Included Content

All directories and files from .specifications/ are included in the package:

  • 0_unstructured - Original specifications
  • 1_structured - Structured process forms
  • 2_models - Data models
  • 3_stories - User stories
  • 4_tasks - Implementation tasks
  • 5_implemented - Completed implementations
  • _archive - Archived documents
  • dev-tracker - Development tracker specifications
  • examples - Example files and templates
  • scripts - Utility scripts

Structure

cs1-specifications/
├── src/
│   └── index.ts          # Main TypeScript source
├── scripts/
│   └── build-specifications.js  # Build script
├── dist/                 # Compiled output (git ignored)
│   ├── index.js
│   ├── index.d.ts
│   └── specifications-data.js
└── specifications/       # Copy of spec files (git ignored)

API

Types

  • DocumentNode - Tree node structure for documents
  • PipelineStatus - Pipeline status information

Functions

  • getDocument(path: string): string | undefined - Get document content by path
  • getPipelineStatus(): PipelineStatus - Get current pipeline status
  • getFilteredDocumentTree(): DocumentNode[] - Get filtered document tree

Exports

  • specifications: Record<string, string> - All specification files
  • documentTree: DocumentNode[] - Complete document tree structure

License

UNLICENSED - Private package for CAMA UNITED GmbH

Author

CAMA UNITED GmbH