-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.39 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@russian-flags/regions-react",
"version": "1.0.0",
"description": "React components and lazy loaders for flags of Russian regions.",
"keywords": [
"react",
"svg",
"flags",
"russia",
"russian-regions",
"regions",
"rf",
"russian-flags",
"субъекты-рф",
"флаги-регионов"
],
"homepage": "https://github.com/russian-flags/regions-react#readme",
"bugs": {
"url": "https://github.com/russian-flags/regions-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/russian-flags/regions-react.git"
},
"author": "lKolabrodl",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"README.en.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dynamic": {
"types": "./dist/dynamic.d.ts",
"import": "./dist/dynamic.js"
},
"./meta": {
"types": "./dist/meta.d.ts",
"import": "./dist/meta.js"
},
"./regions": {
"types": "./dist/regions.d.ts",
"import": "./dist/regions.js"
},
"./region-flag": {
"types": "./dist/react/RegionFlag.d.ts",
"import": "./dist/react/RegionFlag.js"
},
"./flags/*": {
"types": "./dist/flags/*.d.ts",
"import": "./dist/flags/*.js"
},
"./svg/*": {
"types": "./dist/svg/*.svg.d.ts",
"import": "./dist/svg/*.svg.js"
},
"./svg/*.svg": {
"types": "./dist/svg/*.svg.d.ts",
"import": "./dist/svg/*.svg.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"build:js": "node scripts/build.mjs",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run clean && npm run build:js && npm run build:types",
"test": "vitest run",
"typecheck": "tsc --noEmit && tsc -p tsconfig.test.json",
"prepack": "npm run build"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"dependencies": {
"@russian-flags/regions": "^1.0.1"
},
"devDependencies": {
"@types/node": "^26.0.0",
"@types/react": "^19.1.8",
"esbuild": "^0.25.5",
"react": "^19.2.7",
"typescript": "^5.8.3",
"vitest": "^4.1.9"
}
}