Skip to content

Commit

Permalink
Add draft
Browse files Browse the repository at this point in the history
  • Loading branch information
arayaryoma committed Oct 1, 2023
1 parent 052be42 commit 5665407
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions blog.araya.dev/src/_drafts/_package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name": ""
}
16 changes: 16 additions & 0 deletions blog.araya.dev/src/content/blog/2023-10-01-package-json-2023.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: 2023年現在package.jsonに何を書くか
tags:
- Node.js
- package.json
date: "2023-10-01"
description: 2023年現在package.jsonに書くべきことをライブラリ/アプリケーションそれぞれの視点からまとめる
draft: true
---

## Intro

npmを利用するpackageやアプリケーションで、依存関係やそのpackageの情報を[package.json](https://docs.npmjs.com/cli/v10/configuring-npm/package-json)に記述することは、多くのJavaScript開発者にとってはおなじみだろう。package.jsonはただのJSONファイルであるため、JSONフォーマットに従っていればどのようなfield,valueも書くことができる。
npmが公式でサポートするfieldについては[npmのドキュメント](https://docs.npmjs.com/cli/v10/configuring-npm/package-json)で確認可能だが、周辺のJavaScriptおよびNode.jsのエコシステムの発展につれ、Node.jsのプロジェクトにおいてpackage.jsonに記述するfieldは多様化してきている。

## Meta data of the package

0 comments on commit 5665407

Please sign in to comment.