-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.27 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
{
"type": "module",
"engines": {
"node": ">=18"
},
"name": "pnp-react-hooks",
"version": "2.0.1",
"description": "PnPJS React hooks library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "node ./scripts/build.js",
"check": "tsc --noEmit",
"test": "vitest"
},
"keywords": [
"pnp",
"sharepoint",
"react",
"sp",
"hooks"
],
"repository": {
"type": "git",
"url": "https://github.com/SuperioOne/pnp-react-hooks"
},
"homepage": "https://prh.smdd.dev",
"author": {
"name": "Timur Olur",
"email": "[email protected]",
"url": "https://smdd.dev/"
},
"license": "MIT",
"devDependencies": {
"@pnp/nodejs": "^4.6.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"jsdom": "^25.0.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"peerDependencies": {
"@pnp/core": "^4.1.0",
"@pnp/logging": "^4.1.0",
"@pnp/queryable": "^4.1.0",
"@pnp/sp": "^4.1.0",
"react": ">=16.9.0 <19.0.0"
}
}