Update package.json
Browse files- package.json +5 -16
package.json
CHANGED
|
@@ -1,24 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"name": "example-project",
|
| 3 |
"version": "1.0.0",
|
| 4 |
-
"description": "
|
| 5 |
-
"main": "index.
|
|
|
|
| 6 |
"scripts": {
|
| 7 |
-
"start": "node index.
|
| 8 |
-
"test": "echo \"Error: no test specified\" && exit 1"
|
| 9 |
},
|
| 10 |
-
"repository": {
|
| 11 |
-
"type": "git",
|
| 12 |
-
"url": "https://github.com/username/example-project.git"
|
| 13 |
-
},
|
| 14 |
-
"keywords": [
|
| 15 |
-
"node",
|
| 16 |
-
"example"
|
| 17 |
-
],
|
| 18 |
"author": "Your Name",
|
| 19 |
"license": "MIT",
|
| 20 |
-
"dependencies": {
|
| 21 |
-
},
|
| 22 |
-
"devDependencies": {
|
| 23 |
-
}
|
| 24 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"name": "example-project",
|
| 3 |
"version": "1.0.0",
|
| 4 |
+
"description": "A simple Node.js project",
|
| 5 |
+
"main": "index.mjs",
|
| 6 |
+
"type": "module",
|
| 7 |
"scripts": {
|
| 8 |
+
"start": "node index.mjs"
|
|
|
|
| 9 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
"author": "Your Name",
|
| 11 |
"license": "MIT",
|
| 12 |
+
"dependencies": {}
|
|
|
|
|
|
|
|
|
|
| 13 |
}
|