-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.08 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
{
"name": "@bicou/countries-server-data",
"version": "1.6.0",
"description": "graphql countries server data",
"homepage": "https://github.com/gbicou/countries-server",
"keywords": [
"graphql",
"typescript"
],
"author": "Benjamin VIELLARD <[email protected]>",
"license": "MIT",
"repository": "github:gbicou/countries-server",
"type": "module",
"exports": {
".": {
"import": "./dist/countries.js",
"require": "./dist/countries.cjs"
}
},
"main": "./dist/countries.cjs",
"types": "./dist/countries.d.ts",
"files": [
"dist",
"src"
],
"tsup": {
"entry": [
"src/countries.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"clean": true
},
"devDependencies": {
"@private/eslint-config": "workspace:*",
"eslint": "9.17.0",
"tsup": "8.3.5",
"tsx": "4.19.2"
},
"scripts": {
"dev": "tsup --watch",
"stub": "tsup --dts-only",
"build": "tsup --minify",
"build:countries": "tsx build-countries.ts",
"lint": "eslint ."
},
"publishConfig": {
"access": "public"
}
}