-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.46 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.46 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"devDependencies": {
"@parcel/config-default": "^2.12.0",
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3"
},
"name": "avatarcropper",
"version": "2.2.0",
"description": "Simple and accurate image cropping tool",
"dependencies": {
"abortcontroller-polyfill": "^1.7.5",
"acorn": "^8.12.1",
"ansi-styles": "^6.2.1",
"base-x": "^4.0.0",
"boolbase": "^1.0.0",
"browserslist": "^4.24.0",
"buffer-from": "^1.1.2",
"callsites": "^4.2.0",
"caniuse-lite": "^1.0.30001718",
"chalk": "^5.3.0",
"chrome-trace-event": "^1.0.4",
"clone": "^2.1.2",
"color-convert": "^2.0.1",
"color-name": "^2.0.0",
"commander": "^11.1.0",
"cosmiconfig": "^8.3.6",
"css-select": "^5.1.0",
"css-tree": "^2.3.1",
"css-what": "^6.1.0",
"csso": "^5.0.5",
"detect-libc": "^2.0.3",
"dom-serializer": "^2.0.0",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^10.0.0",
"electron-to-chromium": "^1.5.29",
"entities": "^4.5.0",
"error-ex": "^1.3.2",
"escalade": "^3.2.0",
"escape-string-regexp": "^5.0.0",
"get-port": "^7.1.0",
"globals": "^13.24.0",
"has-flag": "^5.0.1",
"htmlnano": "^2.1.1",
"htmlparser2": "^9.1.0",
"import-fresh": "^3.3.0",
"is-arrayish": "^0.3.2",
"is-json": "^2.0.1",
"js-tokens": "^8.0.3",
"json-parse-even-better-errors": "^3.0.2",
"json5": "^2.2.3",
"lightningcss": "^1.27.0",
"lightningcss-linux-x64-gnu": "^1.27.0",
"lightningcss-linux-x64-musl": "^1.27.0",
"lines-and-columns": "^2.0.4",
"lmdb": "^2.9.4",
"mdn-data": "^2.11.1",
"msgpackr": "^1.11.0",
"msgpackr-extract": "^3.0.3",
"node-addon-api": "^7.1.1",
"node-gyp-build": "^4.8.2",
"node-gyp-build-optional-packages": "^5.2.2",
"node-releases": "^2.0.18",
"nth-check": "^2.1.1",
"nullthrows": "^1.1.1",
"ordered-binary": "^1.5.2",
"parent-module": "^3.1.0",
"parse-json": "^7.1.1",
"path-type": "^5.0.0",
"picocolors": "^1.1.0",
"postcss-value-parser": "^4.2.0",
"posthtml": "^0.16.6",
"posthtml-parser": "^0.11.0",
"posthtml-render": "^3.0.0",
"react-error-overlay": "^6.0.11",
"react-refresh": "^0.14.2",
"regenerator-runtime": "^0.14.1",
"resolve-from": "^5.0.0",
"safe-buffer": "^5.2.1",
"semver": "^7.6.3",
"source-map": "^0.7.4",
"source-map-support": "^0.5.21",
"stable": "^0.1.8",
"supports-color": "^9.4.0",
"svgo": "^3.3.2",
"term-size": "^3.0.2",
"terser": "^5.34.0",
"timsort": "^0.3.0",
"tslib": "^2.7.0",
"type-fest": "^4.26.1",
"update-browserslist-db": "^1.1.0",
"utility-types": "^3.11.0",
"v8-compile-cache": "^2.4.0",
"weak-lru-cache": "^1.2.2",
"xxhash-wasm": "^1.0.2",
"yaml": "^2.5.1"
},
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./"
},
"author": "LeadRDRK",
"license": "AGPL-3.0-or-later",
"staticFiles": [
{
"staticPath": "assets/demo.mp4"
},
{
"staticPath": "i18n",
"staticOutPath": "i18n"
}
],
"browserslist": "supports es6-module and not UCAndroid > 0 and not KaiOS > 0 and not dead",
"@parcel/transformer-js": {
"inlineEnvironment": [
"NODE_ENV",
"npm_package_version"
]
}
}