Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

typescript-devdependenciesTypeScript devdependencies 命令行

Agent Skill

typescript-devdependencies 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

2

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:typescript-devdependencies(TypeScript devdependencies 命令行)
来源仓库:https://github.com/marius-townhouse/effective-typescript-skills
仓库路径:skills/typescript-devdependencies
安装命令:
npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill typescript-devdependencies
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill typescript-devdependencies

简介

typescript-devdependencies 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 它适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装命令:npx skills add https://github.com/marius-townhouse/effective-typescript-skills --skill typescript-devdependencies
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境

SKILL.md

Put TypeScript and @types in devDependencies

Overview

TypeScript is a development tool - it doesn't exist at runtime. Similarly, @types packages contain only type declarations, not runtime code. Both should be installed as devDependencies, not dependencies. This keeps production builds lean and prevents version conflicts.

Understanding the distinction between dependencies and devDependencies is crucial for library authors and application developers alike.

When to Use This Skill

  • Setting up a new TypeScript project
  • Installing @types packages
  • Configuring package.json dependencies
  • Publishing TypeScript libraries
  • Managing project dependencies

The Iron Rule

TypeScript and @types packages belong in devDependencies. They are development-only tools and don't exist at runtime.

Detection

Watch for these package.json issues:

{
  "dependencies": {
    "typescript": "^5.0.0",      // WRONG: Should be devDependency
    "@types/node": "^20.0.0",    // WRONG: Should be devDependency
    "@types/react": "^18.0.0"    // WRONG: Should be devDependency
  }
}

Correct Setup

{
  "devDependencies": {
    "typescript": "^5.2.2",
    "@types/node": "^20.0.0",
    "@types/react": "^18.2.0"
  },
  "dependencies": {
    "react": "^18.2.0"  // Runtime dependency
  }
}

Installation Commands

# TypeScript itself - dev dependency
npm install --save-dev typescript

# @types for runtime dependencies - also dev dependency
npm install react                    # Runtime dependency
npm install --save-dev @types/react  # Type definitions

# @types for Node.js built-ins
npm install --save-dev @types/node

Why devDependencies?

// TypeScript compiles away - not in output
const greeting: string = "Hello";  // Type annotation
// Compiles to:
const greeting = "Hello";  // No types in JS output

// @types packages contain only .d.ts files
// No runtime code - safe to exclude from production

Library Publishing

{
  "name": "my-library",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "lodash": "^4.17.0"  // Runtime dependency
  },
  "devDependencies": {
    "typescript": "^5.0.0",
    "@types/lodash": "^4.14.0"
  },
  "peerDependencies": {
    "react": "^18.0.0"  // User provides this
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  }
}

Checking Your Setup

# See what's in dependencies vs devDependencies
npm list --prod        # Production dependencies only
npm list --dev         # Dev dependencies only

# Check for misplaced TypeScript dependencies
npm ls typescript @types/*

Pressure Resistance Protocol

When setting up dependencies:

  1. Ask: Does this run in production? TypeScript and @types don't
  2. Use --save-dev for types: Always for @types packages
  3. Check before publishing: npm pack shows what gets published
  4. Review package.json: Ensure correct categorization

Red Flags

Anti-PatternProblemSolution
typescript in dependenciesBloats productionMove to devDependencies
@types/* in dependenciesUnnecessary in productionMove to devDependencies
Missing @types for depsNo type safetyAdd @types as devDependency

Common Rationalizations

"I want TypeScript available globally"

Reality: Use npx tsc to run the project's TypeScript version. Global installs cause version mismatches.

"@types should match the runtime package"

Reality: The runtime package goes in dependencies, @types goes in devDependencies. They work together but serve different purposes.

"It doesn't matter for applications"

Reality: It keeps node_modules smaller and makes intent clear. Good practice everywhere.

Quick Reference

Package TypeInstall WithExample
TypeScript--save-devnpm i -D typescript
@types/*--save-devnpm i -D @types/node
Runtime library--savenpm i lodash
Types for library--save-devnpm i -D @types/lodash

The Bottom Line

TypeScript and @types are development tools. Install them as devDependencies to keep production builds lean and avoid confusion about what runs at runtime.

Reference

  • Effective TypeScript, 2nd Edition by Dan Vanderkam
  • Item 65: Put TypeScript and @types in devDependencies

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.42%
按下载量换算25

Claude

31.03%
按下载量换算23

Cursor

18.68%
按下载量换算14

Gemini CLI

8.38%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills