-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "react-intense",
"version": "0.2.2",
"description": "A React port of the javascript full-size image viewer",
"scripts": {
"build": "parcel build src/index.html --dist-dir public",
"build-lib": "rm -rf dist && babel --extensions .tsx lib --out-dir dist --copy-files",
"start": "parcel src/index.html --dist-dir public",
"lint": "npx prettier src lib --write"
},
"main": "dist/ReactIntense.js",
"keywords": [
"react",
"component",
"intense",
"react-intense",
"intense-images",
"image",
"images",
"full-size",
"full-screen"
],
"repository": {
"type": "git",
"url": "https://github.com/brycedorn/react-intense"
},
"author": {
"name": "Bryce Dorn",
"email": "[email protected]",
"url": "https://www.bryce.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/brycedorn/react-intense/issues"
},
"homepage": "https://bryce.io/react-intense",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@parcel/css": "^1.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@parcel/transformer-css": "^2.10.2",
"babel-preset-minify": "^0.5.2",
"parcel": "^2.6.0",
"prettier": "3.0.3",
"process": "^0.11.10"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "2.2.0"
},
"targets": {
"main": false
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}