-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.17 KB
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
49
50
51
52
53
54
55
{
"name": "libimg",
"type": "module",
"version": "0.2.4",
"packageManager": "pnpm@10.12.1",
"description": "",
"author": "Chizuki",
"license": "MIT",
"keywords": [],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"files": [
"dist/"
],
"scripts": {
"dev": "tsx ./example/index.ts",
"lint": "eslint --cache",
"bump": "bumpp package.json",
"build": "tsdown",
"prepare": "simple-git-hooks",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"maybe-types": "^0.2.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@curev/eslint-config": "^0.5.0",
"@types/node": "^24.0.3",
"@types/pngjs": "^6.0.5",
"bumpp": "^10.1.1",
"eslint": "^9.29.0",
"lint-staged": "^16.1.2",
"simple-git-hooks": "^2.13.0",
"tsdown": "^0.12.8",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}