-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "@dolphincsv/react-csv-importer",
"description": "DolphinCSV embeddable CSV importer SDK for React",
"private": false,
"version": "1.0.20",
"author": "DolphinCSV",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dolphincsv/react-csv-importer.git"
},
"homepage": "https://dolphincsv.com",
"type": "module",
"scripts": {
"build": "tsc -b && vite build && node update-package-json.cjs"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"dependencies": {
"@dolphincsv/csv-importer-js": "*"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"typescript": "^5.2.2",
"vite": "^5.3.4"
},
"main": "dist/packages/index.1.0.20.cjs.js",
"module": "dist/packages/index.1.0.20.es.js",
"browser": "dist/packages/index.1.0.20.umd.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/packages/index.1.0.20.es.js",
"require": "./dist/packages/index.1.0.20.cjs.js",
"default": "./dist/packages/index.1.0.20.umd.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/dolphincsv/react-csv-importer/issues"
},
"keywords": [
"react",
"csv",
"spreadsheet",
"import",
"importer",
"embedded",
"embeddable"
]
}