diff options
| author | Nicolas Paul <n@nc0.fr> | 2024-02-22 17:38:10 +0100 |
|---|---|---|
| committer | Nicolas Paul <n@nc0.fr> | 2024-02-22 17:38:10 +0100 |
| commit | f70b4165c1c41084b1097eb492c752335875da3b (patch) | |
| tree | 841e7b19ef82d9667f13c82272ce95a619a60380 | |
| parent | 09df855981464dc64452c4b1affa77a571262037 (diff) | |
Création du workspace NPM
Un Workspae NPM permet d'utiliser l'écosystème de module de NPM au sein
d'un monorepo.
Signed-off-by: Nicolas Paul <n@nc0.fr>
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | package.json | 30 |
2 files changed, 31 insertions, 0 deletions
@@ -1 +1,2 @@ .DS_Store +node_modules diff --git a/package.json b/package.json new file mode 100644 index 0000000..61d403e --- /dev/null +++ b/package.json @@ -0,0 +1,30 @@ +{ + "name": "@nc0/life2-workspace", + "version": "1.0.0", + "description": "Workspace for the Life 2 project", + "private": true, + "license": "SEE LICENSE IN COPYRIGHT", + "packageManager": "npm@10.2.4", + "engines": { + "node": ">=20.11.1", + "npm": ">=10.2.4" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/nc0fr/life2.git" + }, + "keywords": [ + "game", + "of", + "life", + "cellular", + "automate" + ], + "author": "Nicolas Paul <n@nc0.fr> (https://nc0.fr)", + "bugs": { + "url": "https://github.com/nc0fr/life2/issues", + "email": "n@nc0.fr" + }, + "homepage": "https://github.com/nc0fr/life2#readme", + "workspaces": [] +} |
