-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "@printy/react-context-menu",
"version": "2.0.0",
"description": "Context menu component for React",
"main": "dist/index.js",
"types": "dist/types",
"files": ["dist", "package.json", "README.md", "LICENSE"],
"scripts": {
"clean": "rimraf /dist",
"copy-files": "copyfiles -u 1 src/**/*.css dist/",
"build": "npm run clean && tsc && npm run copy-files",
"test": "jest"
},
"keywords": [
"react",
"context",
"menu",
"component"
],
"author": "jorensm",
"license": "MIT",
"repository": "github:Printy-Studios/react-context-menu",
"devDependencies": {
"@testing-library/react": "^14.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"@types/jest": "^29.5.3",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/jest-dom": "^5.17.0",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"mini-css-extract-plugin": "^2.7.6",
"rimraf": "^5.0.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1"
}
}