-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.2 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
{
"name": "react-nvs-turkey-map",
"version": "1.2.2",
"types": "dist/cjs/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"description": "React Turkey Map Component",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "rm -rf dist/ && prettier --write lib/** && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "release-it"
},
"keywords": [
"react",
"turkey-map",
"turkey-map-component",
"turkey-map-library",
"turkey-map-library-for-react",
"turkey-districts-map-component"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/novatorsoft/react-turkey-map/issues"
},
"homepage": "https://github.com/novatorsoft/react-turkey-map#readme",
"repository": {
"type": "git",
"url": "https://github.com/novatorsoft/react-turkey-map"
},
"contributors": [
"Novatorsoft <info@novatorsoft.com> (https://github.com/novatorsoft)"
],
"author": "Novatorsoft <info@novatorsoft.com> (https://github.com/novatorsoft)",
"license": "MIT",
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.3",
"@storybook/addon-a11y": "^10.1.8",
"@storybook/addon-docs": "^10.1.8",
"@storybook/addon-webpack5-compiler-swc": "^4.0.2",
"@storybook/react-webpack5": "^10.1.8",
"@types/react": "^19.2.7",
"prettier": "^3.7.4",
"react": "^19.2.3",
"release-it": "^19.1.0",
"storybook": "^10.1.8",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1"
},
"release-it": {
"git": {
"requireBranch": "master",
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits"
},
"infile": "CHANGELOG.md"
}
}
}
}