-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.04 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
{
"name": "pc4399",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.11.1",
"description": "",
"author": "",
"license": "AGPL-3.0-or-later",
"keywords": [],
"exports": {
".": {
"types": {
"require": "./dist/index.d.cts",
"default": "./dist/index.d.ts"
},
"default": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint ."
},
"dependencies": {
"axios": "^1.11.0",
"cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@types/node": "^20.19.10",
"eslint": "^9.33.0",
"lint-staged": "^15.5.2",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}