-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "holee-contextmenu",
"version": "1.2.4",
"description": "React context menu",
"main": "./packages/cjs/index.js",
"module": "./packages/esm/index.js",
"types": "./packages/esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hochan222/holee-contextmenu.git"
},
"keywords": [
"menu",
"dropdown",
"contextmenu",
"react contextmenu",
"typescript contextmenu"
],
"bugs": {
"url": "https://github.com/hochan222/holee-contextmenu/issues"
},
"author": "hochan222 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"standard-version": "^9.3.1"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir packages/cjs",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir packages/types",
"format:github-action": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"release": "standard-version"
}
}