summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorLeo Goetz <dev@leogtz.de>2025-11-08 18:55:03 +0100
committerLeo Goetz <dev@leogtz.de>2025-11-08 18:55:03 +0100
commit16a0e9a9d2c24af28142ed3420ef6cb373c454f7 (patch)
treeb948472cea12b505ae3f2cc04b66801207ebc6aa /package.json
parent91a6ac10e416dcf2c29b6e37e3dfe19672eb0f84 (diff)
started making the command and json db
Diffstat (limited to 'package.json')
-rw-r--r--package.json10
1 files changed, 8 insertions, 2 deletions
diff --git a/package.json b/package.json
index cafb329..c766335 100644
--- a/package.json
+++ b/package.json
@@ -2,13 +2,19 @@
"name": "intro-node",
"version": "1.0.0",
"description": "",
+ "type": "module",
"main": "index.js",
"bin": {
"note": "./index.js"
},
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
+ "note": "node index.js"
},
+ "keywords": [],
"author": "",
- "license": "ISC"
+ "license": "ISC",
+ "packageManager": "pnpm@10.20.0",
+ "dependencies": {
+ "yargs": "^18.0.0"
+ }
}