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

@venturialstd/project-management

v0.0.6

Published

Project Management Module for Venturial - Task and Sprint Management

Readme

@venturialstd/project-management

Project Management Module for Venturial - Task and Sprint Management with Scrum methodology support.

Features

  • Task Management: Full CRUD operations for tasks with rich metadata
  • Sprint Management: Scrum-based sprint lifecycle management
  • Drag & Drop Support: Task reordering and movement between sprints/backlog
  • Task Assignment: Assign tasks to team members
  • Comments & Attachments: Add comments and attachments to tasks
  • Status Tracking: Flexible status management with built-in support for common statuses
  • Time Tracking: Estimated and actual hours tracking
  • Priority & Type Management: Prioritize and categorize tasks
  • Backlog Management: Dedicated backlog for unassigned tasks
  • Sprint Statistics: Real-time capacity and progress tracking

Installation

npm install @venturialstd/project-management

Usage

Import the Module

import { Module } from '@nestjs/common';
import { ProjectManagementModule } from '@venturialstd/project-management';

@Module({
  imports: [ProjectManagementModule],
})
export class AppModule {}

Using the Task Service

import { Injectable } from '@nestjs/common';
import { TaskService, CreateTaskDto } from '@venturialstd/project-management';

@Injectable()
export class YourService {
  constructor(private readonly taskService: TaskService) {}

  async createTask(data: CreateTaskDto) {
    return this.taskService.createTask(data);
  }

  async moveTask(taskId: string, targetSprintId: string, targetOrder?: number) {
    return this.taskService.moveTask({
      taskId,
      targetSprintId,
      targetOrder,
    });
  }

  async assignTask(taskId: string, assigneeId: string, assigneeName: string) {
    return this.taskService.assignTask(taskId, assigneeId, assigneeName);
  }

  async getBacklog(organizationId: string) {
    return this.taskService.getBacklogTasks(organizationId);
  }
}

Using the Sprint Service

import { Injectable } from '@nestjs/common';
import { SprintService, CreateSprintDto } from '@venturialstd/project-management';

@Injectable()
export class YourService {
  constructor(private readonly sprintService: SprintService) {}

  async createSprint(data: CreateSprintDto) {
    return this.sprintService.createSprint(data);
  }

  async startSprint(sprintId: string) {
    return this.sprintService.startSprint(sprintId);
  }

  async completeSprint(sprintId: string) {
    return this.sprintService.completeSprint(sprintId);
  }

  async getSprintStats(sprintId: string) {
    return this.sprintService.getSprintWithStats(sprintId);
  }

  async getCurrentSprint(organizationId: string) {
    return this.sprintService.getCurrentSprint(organizationId);
  }
}

Entities

Task Entity

  • id: UUID
  • title: Task title
  • description: Detailed description
  • status: Current status (flexible, supports custom statuses)
  • priority: LOW | MEDIUM | HIGH | URGENT
  • type: BUG | FEATURE | IMPROVEMENT | TASK
  • assigneeId, assigneeName, assigneeAvatar: Assignee information
  • reporterId, reporterName, reporterAvatar: Reporter information
  • dueDate: Task due date
  • estimatedHours: Estimated time to complete
  • actualHours: Actual time spent
  • tags: Array of tags
  • comments: Array of comments
  • attachments: Array of attachments
  • order: Position in sprint/backlog
  • organizationId: Organization owner
  • sprintId: Associated sprint (null for backlog)

Sprint Entity

  • id: UUID
  • name: Sprint name
  • goal: Sprint goal/objective
  • startDate: Sprint start date
  • endDate: Sprint end date
  • status: PLANNING | ACTIVE | COMPLETED | ARCHIVED
  • capacity: Sprint capacity in hours
  • organizationId: Organization owner

API Reference

TaskService Methods

  • createTask(data: CreateTaskDto): Promise<Task>
  • updateTask(taskId: string, data: UpdateTaskDto): Promise<Task>
  • moveTask(data: MoveTaskDto): Promise<Task>
  • assignTask(taskId: string, assigneeId: string, assigneeName: string, assigneeAvatar?: string): Promise<Task>
  • unassignTask(taskId: string): Promise<Task>
  • addComment(taskId: string, comment: CommentData): Promise<Task>
  • addAttachment(taskId: string, attachment: AttachmentData): Promise<Task>
  • getTasksBySprint(sprintId: string, organizationId: string): Promise<Task[]>
  • getBacklogTasks(organizationId: string): Promise<Task[]>
  • getTasksByAssignee(assigneeId: string, organizationId: string): Promise<Task[]>
  • deleteTask(taskId: string): Promise<void>
  • updateTaskStatus(taskId: string, status: string): Promise<Task>
  • bulkUpdateOrders(updates: Array<{taskId: string; order: number}>): Promise<void>

SprintService Methods

  • createSprint(data: CreateSprintDto): Promise<Sprint>
  • updateSprint(sprintId: string, data: UpdateSprintDto): Promise<Sprint>
  • deleteSprint(sprintId: string): Promise<void>
  • startSprint(sprintId: string): Promise<Sprint>
  • completeSprint(sprintId: string, moveIncompleteTasks?: boolean): Promise<Sprint>
  • archiveSprint(sprintId: string): Promise<Sprint>
  • getActiveSprints(organizationId: string): Promise<Sprint[]>
  • getSprintsByOrganization(organizationId: string, includeArchived?: boolean): Promise<Sprint[]>
  • getSprintWithStats(sprintId: string): Promise<{sprint: Sprint; stats: SprintStats}>
  • getCurrentSprint(organizationId: string): Promise<Sprint | null>
  • getUpcomingSprints(organizationId: string): Promise<Sprint[]>
  • getCompletedSprints(organizationId: string, limit?: number): Promise<Sprint[]>

Database Migrations

The module requires the following database tables:

  • task: Tasks table
  • sprint: Sprints table

Make sure to run the necessary migrations in your application to create these tables.

License

MIT