-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 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
{
"name": "@uipath/ui-widgets-datatable",
"version": "1.0.0",
"description": "A simple React datatable component",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./DataTable.css": "./dist/DataTable.css"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc && npm run copy-styles",
"clean": "rimraf dist",
"copy-styles": "node scripts/build-styles.js",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage --run"
},
"keywords": [
"react",
"datatable",
"table",
"ui-widgets"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/UiPath/uipath-ui-widgets.git",
"directory": "packages/datatable"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"peerDependencies": {
"@uipath/uipath-typescript": "^1.2.2",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"rimraf": "^6.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"jsdom": "^25.0.1",
"typescript": "~5.9.3",
"vite": "^6.0.3",
"vitest": "^4.0.18",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"sass": "^1.83.4",
"lightningcss": "^1.30.2",
"@tailwindcss/oxide": "^4.1.18"
},
"dependencies": {
"@uipath/apollo-core": "^5.7.0",
"@uipath/apollo-wind": "^0.10.0",
"ag-grid-community": "^34.3.1",
"ag-grid-react": "^34.3.1"
}
}