-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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": "overwolf-hooks",
"version": "4.1.5",
"description": "custom hooks to help use overwolf api with the new react hooks technology.",
"author": "AlbericoD",
"license": "MIT",
"repository": "AlbericoD/overwolf-hooks",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"test": "jest",
"test:watch": "jest --env=jsdom --watch",
"build": "rollup -c",
"start": "rollup -c -w",
"build:ts": "tsc"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@overwolf/types": "^3.24.6",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-url": "^8.0.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.8",
"@types/react": "^18.2.47",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-test-renderer": "^18.2.0",
"rollup": "^4.9.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^22.0.12",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^18"
},
"publishConfig": {
"access": "public"
}
}