-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.67 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.67 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
98
99
100
{
"name": "@device-management-toolkit/ui-toolkit-react",
"version": "5.0.2",
"description": "React UI controls for Intel AMT features",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"*.js",
"*.js.map",
"*.d.ts",
"*.d.ts.map",
"components",
"i18n",
"utils"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettify": "npx prettier --write .",
"ci-prettify": "npx prettier --check ."
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/device-management-toolkit/ui-toolkit-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/device-management-toolkit/ui-toolkit-react.git"
},
"homepage": "https://github.com/device-management-toolkit/ui-toolkit-react#readme",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"kvm",
"sol",
"ider",
"remote-desktop",
"i18n",
"amt",
"intel"
],
"dependencies": {
"@device-management-toolkit/ui-toolkit": "^3.3.11",
"@xterm/xterm": "^6.0.0",
"i18next": "^25.2.1",
"react-i18next": "^16.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-util": "^30.2.0",
"prettier": "^3.5.3",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-multiline-arrays": "^4.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.0.4",
"typescript-eslint": "^8.53.0"
}
}