-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "@misskey-dev/sharp-read-bmp",
"version": "1.2.0",
"description": "Function for reading bmp and ico and returning a sharp instance",
"type": "module",
"keywords": [],
"author": "tamaina <[email protected]>",
"license": "ISC",
"repository": "https://github.com/misskey-dev/sharp-read-bmp.git",
"bugs": "https://github.com/misskey-dev/sharp-read-bmp/issues",
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"eslint": "eslint --quiet \"src/**/*.ts\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent=false --verbose false",
"build": "tsc"
},
"files": [
"built",
"LICENSE"
],
"dependencies": {
"decode-bmp": "^0.2.1",
"decode-ico": "^0.4.1",
"sharp": "^0.33.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@swc/core": "^1.4.1",
"@swc/jest": "^0.2.36",
"@types/node": "^18.19.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"file-type": "^18.7.0",
"jest": "^29.7.0",
"mkdirp": "^2.1.6",
"rimraf": "^4.4.1",
"typescript": "^5.3.3"
}
}