-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
43
44
45
{
"name": "ao3-toolkit",
"author": "Luca Engelhard",
"bugs": {
"url": "https://github.com/lucaengelhard/ao3-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lucaengelhard/ao3-toolkit.git"
},
"homepage": "https://github.com/lucaengelhard/ao3-toolkit#readme",
"license": "MIT",
"version": "2.2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "tsc",
"docs": "npx typedoc",
"test": "jest --silent=false",
"release": "pnpm run build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.11",
"@types/tough-cookie": "^4.0.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7",
"axios-cookiejar-support": "^5.0.0",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.4.1",
"tough-cookie": "^4.1.3"
}
}