forked from fkhadra/react-contexify
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.04 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": "5.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"scss"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"start:example": "cd example && yarn start",
"build": "yarn run prepare",
"test": "cypress run",
"lint": "tsdx lint",
"prepare": "tsdx build && yarn run style",
"cypress:open": "cypress open",
"sass": "sass scss/main.scss dist/ReactContexify.css",
"postsass": "postcss dist/ReactContexify.css --use autoprefixer -m -o dist/ReactContexify.css",
"style": "yarn run sass && cssnano dist/ReactContexify.css dist/ReactContexify.min.css --no-zindex --no-reduceIdents && yarn run gen-style-injector",
"gen-style-injector": "node scripts/style-injector.js"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-contexify",
"author": "Fadi Khadra <[email protected]> (https://github.com/fkhadra)",
"repository": {
"type": "git",
"url": "git+https://github.com/fkhadra/react-contexify.git"
},
"bugs": {
"url": "https://github.com/fkhadra/react-contexify/issues"
},
"description": "Add contextmenu to your react component with ease",
"keywords": [
"react",
"context menu",
"react-component",
"menu",
"react-contextmenu",
"react-contexify",
"popup"
],
"module": "dist/react-contexify.esm.js",
"devDependencies": {
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"cssnano": "^4.1.10",
"cssnano-cli": "^1.0.5",
"cypress": "^5.3.0",
"husky": "^4.3.0",
"postcss": "^8.1.4",
"postcss-cli": "^8.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass": "^1.26.12",
"tsdx": "^0.14.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"dependencies": {
"clsx": "^1.1.1"
}
}