-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
71 lines (71 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
{
"name": "react-directus",
"version": "0.0.2",
"description": "A set of React components and utilities for Directus Headless CMS",
"homepage": "https://github.com/gremo/react-directus",
"repository": {
"type": "git",
"url": "https://github.com/gremo/react-directus.git"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types",
"scripts": {
"lint": "eslint src/* --ext .ts,.tsx",
"test": "jest",
"build": "rimraf dist/* && rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"pre-pull-request": "npm run format && npm run lint && npm run test && npm run build"
},
"pre-commit": [
"format",
"lint"
],
"keywords": [
"react",
"react-hooks",
"directus",
"headless",
"cms"
],
"author": "Marco Polichetti <[email protected]>",
"license": "ISC",
"devDependencies": {
"@directus/sdk": "10.3.5",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-typescript": "11.1.6",
"@testing-library/react": "14.3.1",
"@types/jest": "29.5.14",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-tsdoc": "0.4.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"pre-commit": "1.2.2",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "5.0.10",
"rollup": "4.28.1",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.7.2"
},
"peerDependencies": {
"@directus/sdk": "^9.0.0 || ^10.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}