-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1011 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
{
"name": "simple-image-compressor",
"version": "1.8.2",
"type": "module",
"description": "Simple frontend JS library to compress images",
"main": "./dist/simple-image-compressor.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write src/",
"test": "vitest",
"test-ci": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lenni009/simple-image-compressor.git"
},
"keywords": [
"compressor",
"images",
"frontend"
],
"author": "Lenni",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lenni009/simple-image-compressor/issues"
},
"homepage": "https://github.com/Lenni009/simple-image-compressor#readme",
"devDependencies": {
"@vitest/browser": "^1.6.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.1",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.6.0",
"webdriverio": "^8.36.1"
}
}