-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 973 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
39
40
41
42
{
"name": "img-toolkit",
"author": "2YH02",
"license": "MIT",
"version": "1.0.2",
"description": "A library for resizing and editing images",
"type": "module",
"keywords": [
"image",
"resize",
"edit",
"javascript",
"cjs",
"esm"
],
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "./types.d.ts",
"files": [
"dist/cjs",
"dist/esm",
"types.d.ts",
"README.md"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./types.d.ts"
}
},
"scripts": {
"dev": "vite --config ./vite/example/vite.config.ts",
"build": "tsc && vite build --config ./vite/example/vite.config.ts && vite build --config ./vite/libs/vite.config.ts",
"preview": "vite preview --config ./vite/example/vite.config.ts"
},
"devDependencies": {
"@types/node": "^20.14.8",
"typescript": "^5.2.2",
"vite": "^5.3.1"
}
}