tinte

(★ 614)

Compile your design system into an Agent Plugin. Extract an identity from any reference, emit SKILL.md + tokens.css, lint what bypasses your tokens.

파일 탐색기

  • .gitignore
  • biome.json
  • bun.lock
  • CLAUDE.md
  • LICENSE
  • package.json
  • README.md
  • tinte.config.json
  • tsconfig.base.json

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

bun build

설명 보기 ▼

Bundle JavaScript and TypeScript files with Bun's fast native bundler.

bun build {{path/to/entry.ts}} --outfile {{path/to/output.js}}

Bundle an entry point to a single output file:

bun build {{path/to/entry1.ts path/to/entry2.ts ...}} --outdir {{path/to/dist}}

Bundle multiple entry points to an output directory:

bun build {{path/to/entry.ts}} --outfile {{path/to/output.js}} --sourcemap

Bundle with source maps for debugging:

🔍

bun install

설명 보기 ▼

Install JavaScript dependencies for a project from `package.json`.

bun {{[i|install]}}

Install all dependencies listed in `package.json`:

bun {{[i|install]}} {{package_name}}@{{version}}

Install a single package (this is an alias for `bun add`):

bun {{[i|install]}} {{[-g|--global]}} {{package_name}}

Install a package globally:

🔍

bun

설명 보기 ▼

JavaScript 런타임 및 툴킷.
번들러, 테스트 러너 및 패키지 관리자가 포함.
더 많은 정보: <https://bun.com/docs>.

bun init

JavaScript 파일 또는 `package.json` 스크립트 실행:

bun run {{path/to/file|script_name}}

단위 테스트 실행:

bun test

`package.json`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:

🔍

bunx

설명 보기 ▼

로컬에 설치되었거나 원격에서 가져온 패키지의 바이너리를 실행.
참고: `bun x`는 `bunx`의 별칭으로 사용할 수 있음.
더 많은 정보: <https://bun.com/docs/pm/bunx>.

bunx {{package_name}} "{{command_argument}}"

레지스트리에서 패키지를 다운로드하여 실행:

bunx {{package_name}} --version

로컬에 설치된 패키지의 버전 확인 (존재하는 경우):

bunx --bun {{package_name}}

실행파일을 Node 대신 Bun 런타임으로 강제 실행:

🔍

npx

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

// repository documentation