-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 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
{
"name": "react-circular-menu",
"version": "2.4.15",
"description": "Circle menu component for React.",
"author": "Fawad Ali <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/9inpachi/react-circular-menu#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/9inpachi/react-circular-menu.git"
},
"keywords": [
"react",
"circle",
"menu",
"circular",
"list"
],
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/9inpachi/react-circular-menu/issues"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"clean": "rm -rf ./dist",
"tsc": "tsc",
"prepublishOnly": "yarn build",
"dev": "yarn clean && tsc --watch",
"build": "yarn clean && yarn build:cjs && yarn build:esm && yarn build:types",
"build:cjs": "yarn tsc --module commonjs --outDir ./dist/cjs/ --declaration false",
"build:esm": "yarn tsc --module es6 --outDir ./dist/esm/ --declaration false",
"build:types": "yarn tsc --emitDeclarationOnly true --declarationDir ./dist/types"
},
"peerDependencies": {
"react": ">= 16",
"react-dom": ">= 16",
"styled-components": ">= 4"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/styled-components": "^5.1.34",
"prettier": "^3.4.2",
"styled-components": "^6.1.13",
"typescript": "^5.7.2"
},
"eslintConfig": {
"extends": "react-app"
}
}