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

ai-company-culture-data

v1.0.0

Published

Culture dataset for 49 AI & tech companies — Glassdoor ratings, work-life balance scores, culture values, and open roles. Updated monthly.

Readme

AI Company Culture Data

Culture dataset for 49 AI & tech companies — Glassdoor ratings, work-life balance scores, culture values, and open roles. Updated monthly.

Built and maintained by JobsByCulture — the culture-first job board for AI & tech.

Install

npm install ai-company-culture-data

Usage

const culture = require('ai-company-culture-data');

// Get all companies
const all = culture.getAllCompanies();
console.log(Object.keys(all).length); // 49

// Get a specific company
const anthropic = culture.getCompany('anthropic');
console.log(anthropic);
// {
//   name: 'Anthropic',
//   glassdoor: 4.4,
//   wlbScore: 3.7,
//   size: 'Mid (~1,500)',
//   values: ['ethical-ai', 'learning', 'equity', ...],
//   openRoles: 446,
//   profileUrl: 'https://jobsbyculture.com/companies/anthropic'
// }

// Filter by culture value
const remoteCompanies = culture.filterByValue('remote');
console.log(Object.keys(remoteCompanies)); // ['huggingface', 'supabase', 'posthog', ...]

// Top rated companies
const top10 = culture.topRated(4.0);
top10.forEach(([slug, c]) => {
  console.log(`${c.name}: ${c.glassdoor}/5 Glassdoor, ${c.wlbScore}/5 WLB`);
});

// Best work-life balance
const bestWLB = culture.bestWLB(4.0);
bestWLB.forEach(([slug, c]) => {
  console.log(`${c.name}: ${c.wlbScore}/5 WLB`);
});

Data Schema

Each company includes:

| Field | Type | Description | |-------|------|-------------| | name | string | Company display name | | glassdoor | number | Overall Glassdoor rating (1-5) | | wlbScore | number | Work-life balance score (1-5) | | size | string | Company size (e.g., "Small (~250)") | | values | string[] | Culture values (see below) | | openRoles | number | Current open job count | | careersUrl | string | Careers page URL | | profileUrl | string | Full culture profile on JobsByCulture |

Culture Values

wlb, remote, flex-hours, async, deep-work, transparent, flat, diverse,
psych-safety, eng-driven, ship-fast, open-source, learning, equity,
product-impact, many-hats, ethical-ai, social-impact

Companies Included

Anthropic, OpenAI, Databricks, Stripe, Figma, Cloudflare, Datadog, CoreWeave, Airbnb, HubSpot, Samsara, Crusoe, Brex, Scale AI, Glean, Notion, Ramp, Vanta, Mistral AI, LangChain, Grafana Labs, ElevenLabs, Cohere, Plaid, Perplexity AI, Replit, Google DeepMind, Vercel, Cursor, Mercury, Airtable, Synthesia, Together AI, Modal, Supabase, Apollo.io, Tailscale, Baseten, Suno, Pylon, PostHog, Fireworks AI, Runway, incident.io, Linear, Pinecone, Weaviate, Hugging Face, Vast AI

Data Source

All data sourced from JobsByCulture — a culture-first job board that profiles AI & tech companies using Glassdoor data, employee reviews, and community sentiment from Hacker News and Reddit.

License

MIT