-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.57 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.57 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@apvee/spfx-react-toolkit",
"version": "2.0.2",
"description": "Comprehensive React runtime and hooks library for SharePoint Framework (SPFx)",
"private": false,
"engines": {
"node": ">=22.14.0 < 23.0.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@fluentui/react-migration-v8-v9": "^9.9.12",
"@fluentui/react-theme": "^9.2.0",
"@microsoft/sp-application-base": "1.21.1",
"@microsoft/sp-component-base": ">=1.18.0",
"@microsoft/sp-core-library": "1.21.1",
"@microsoft/sp-listview-extensibility": ">=1.18.0",
"@microsoft/sp-webpart-base": ">=1.18.0",
"jotai": "^2.6.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"tslib": "2.3.1",
"@microsoft/decorators": "1.21.1",
"@microsoft/sp-dialog": "1.21.1"
},
"devDependencies": {
"@fluentui/react": "^8.106.4",
"@microsoft/eslint-config-spfx": ">=1.18.0",
"@microsoft/eslint-plugin-spfx": ">=1.18.0",
"@microsoft/rush-stack-compiler-5.3": "0.1.0",
"@microsoft/sp-build-web": ">=1.18.0",
"@microsoft/sp-lodash-subset": ">=1.18.0",
"@microsoft/sp-module-interfaces": "1.21.1",
"@microsoft/sp-office-ui-fabric-core": ">=1.18.0",
"@microsoft/sp-property-pane": ">=1.18.0",
"@rushstack/eslint-config": "4.0.1",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@types/webpack-env": "~1.15.2",
"ajv": "^6.12.5",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "4.3.0",
"gulp": "4.0.2",
"typescript": "~5.3.3"
},
"peerDependencies": {
"@pnp/core": "^4.0.0",
"@pnp/queryable": "^4.0.0",
"@pnp/sp": "^4.0.0"
},
"homepage": "https://github.com/apvee/spfx-react-toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/apvee/spfx-react-toolkit.git"
},
"bugs": {
"url": "https://github.com/apvee/spfx-react-toolkit/issues"
},
"author": "Apvee Solutions",
"license": "MIT",
"keywords": [
"sharepoint",
"spfx",
"sharepoint-framework",
"react",
"hooks",
"typescript",
"office365",
"microsoft365",
"m365",
"webpart",
"extension",
"commandset",
"field-customizer",
"application-customizer",
"jotai",
"pnp",
"pnpjs",
"context",
"state-management"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}