-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
96 lines (96 loc) · 2.2 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
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
{
"name": "frappe-react-sdk",
"description": "React hooks for Frappe Framework",
"version": "1.9.0",
"license": "MIT",
"author": {
"name": "The Commit Company",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/The-Commit-Company/frappe-react-sdk/issues"
},
"homepage": "https://github.com/The-Commit-Company/frappe-react-sdk#readme",
"keywords": [
"Frappe",
"React",
"hooks"
],
"files": [
"dist",
"README.md"
],
"types": "./dist/index.d.ts",
"main": "./dist/frappe-react-sdk.umd.js",
"module": "./dist/frappe-react-sdk.es.js",
"exports": {
".": {
"import": "./dist/frappe-react-sdk.es.js",
"require": "./dist/frappe-react-sdk.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "npm run build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"peerDependencies": {
"react": ">=17.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Commit-Company/frappe-react-sdk.git"
},
"devDependencies": {
"@testing-library/dom": "^8.17.1",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react": "^2.1.0",
"c8": "^7.13.0",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jsdom": "^20.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.6.4",
"vite": "^3.2.6",
"vite-plugin-dts": "^1.4.1",
"vitest": "^0.31.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"sourceType": "module"
}
},
"dependencies": {
"frappe-js-sdk": "^1.7.0",
"socket.io-client": "4.7.1",
"swr": "^2.2.5"
}
}