-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.43 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
{
"name": "react-datatrans-light-box",
"version": "4.0.1",
"description": "Datatrans Lightbox component for React apps",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"keywords": [
"react",
"datatrans",
"lightbox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/datatrans/react-datatrans-light-box.git"
},
"homepage": "https://www.datatrans.ch",
"email": "[email protected]",
"author": "Datatrans AG",
"license": "MIT",
"scripts": {
"test": "npm run lint && npm run build",
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint ./src --ext .ts,.tsx",
"example:start": "vite example"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.0",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "8.39.0",
"eslint-plugin-react": "^7.32.2",
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "6.7.0",
"typescript": "5.0.4",
"vite": "4.3.3"
},
"tsup": {
"entry": [
"src/index.ts"
],
"outDir": "lib",
"format": [
"cjs",
"esm"
],
"sourcemap": true,
"clean": true,
"minify": false,
"dts": true,
"target": [
"chrome110",
"firefox110",
"safari16"
],
"external": [
"react",
"prop-types"
]
}
}