-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"author": "Maurício Piber Fão",
"dependencies": {
"@piber/prettier-config": "^0.1.0",
"prettier": "^3.3.3"
},
"description": "First hello world to the world",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"learning",
"hello world",
"nodejs",
"node",
"typescript"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"name": "@piber/hello-world",
"prettier": "@piber/prettier-config",
"repository": {
"url": "https://github.com/mauriciopiber/hello-world"
},
"scripts": {
"build": "tsup",
"format": "prettier . -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "1.4.1"
}