forked from rocktimsaikia/meta-fetcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.06 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
49
50
51
52
53
54
55
{
"name": "my-npm-package",
"description": "Get country information via currency code",
"version": "0.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Rocktim Saikia",
"url": "https://rocktimsaikia.dev"
},
"funding": "https://github.com/sponsors/rocktimsaikia",
"repository": "rocktimsaikia/my-npm-package",
"scripts": {
"build": "tsup",
"test": "pnpm build && ava",
"release": "pnpm test && np --no-tests"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@rocktimsaikia/prettier-config": "^1.0.4",
"@types/node": "^17.0.23",
"ava": "^4.2.0",
"tsup": "^5.12.4",
"tsx": "^4.7.0",
"typescript": "^4.6.3"
},
"np": {
"contents": "dist"
},
"keywords": [
"my-npm-package"
],
"prettier": "@rocktimsaikia/prettier-config",
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"minify": true,
"clean": true,
"dts": true
}
}