-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "thumbor-client",
"private": false,
"version": "0.0.6",
"type": "module",
"author": "azabroflovski",
"homepage": "https://github.com/azabroflovski/thumbor-client",
"bugs": {
"url": "https://github.com/azabroflovski/thumbor-client/issues"
},
"repository": {
"url": "https://github.com/azabroflovski/thumbor-client",
"type": "git"
},
"keywords": [
"thumbor",
"thumbor client",
"thumbor typescript",
"thumbor typescript client",
"thumbor browser",
"thumbor node",
"thumbor node typescript"
],
"files": [
"dist"
],
"types": "./dist/main.d.ts",
"main": "./dist/thumbor-client.umd.cjs",
"module": "./dist/thumbor-client.js",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/thumbor-client.js",
"require": "./dist/thumbor-client.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && cp LICENSE dist",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.12.2",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.8.1"
}
}