-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "countrydata.js",
"license": "MIT",
"version": "1.0.6",
"description": "An offline JavaScript library for getting Global Country , iso3166 Data",
"keywords": [
"javascript",
"typescript",
"country",
"country-data",
"iso3166"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"homepage": "https://github.com/Clifftech123/CountryData.js",
"bugs": {
"url": "https://github.com/Clifftech123/CountryData.js/issues"
},
"author": "Isaiah Clifford Opoku <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Clifftech123/CountryData.js"
},
"files": [
"dist",
"src/data.json"
],
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"check-format": "prettier --check .",
"release": "npm run build && changeset publish --access public",
"check-exports": "attw --pack .",
"lint": "tsc",
"test": "vitest run",
"test:detect": "jest --detectOpenHandles"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@vitest/coverage-v8": "^2.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"@changesets/cli": "^2.27.8"
}
}