-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 947 Bytes
/
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
{
"name": "@retailcrm/image-preview",
"type": "module",
"license": "MIT",
"version": "1.0.2",
"description": "Util for making URLs for processed by image worker images",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"files": [
"dist",
"LICENSE"
],
"types": "dist/index.d.ts",
"repository": "[email protected]:retailcrm/image-preview.git",
"author": "RetailDriverLLC <[email protected]>",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.7",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"typescript": "~5.5.4",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.9",
"vite-plugin-dts": "^4.5.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"eslint": "eslint src"
}
}