-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.09 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@fujocoded/ao3.js",
"version": "0.21.0",
"description": "A NodeJS API for scraping AO3 data",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./urls": {
"import": {
"types": "./dist/urls.d.ts",
"default": "./dist/urls.js"
}
},
"./zod-schemas": {
"import": {
"types": "./dist/zod-schemas.d.ts",
"default": "./dist/zod-schemas.js"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"type-check": "tsc --noEmit",
"generate-schemas": "ts-to-zod types/entities.ts types/zod/generated/schemas.ts --skipValidation && node types/zod/fix-schemas.mjs",
"build": "npm run generate-schemas && tsdown",
"test": "vitest --disable-console-intercept",
"test:update": "vitest -u",
"dev": "npm run generate-schemas && tsdown --watch",
"coverage": "vitest run --coverage",
"encode-mock-files": "ts-node-esm tests/mocks/scripts/encode-mock-files.mts",
"redownload": "tsx tests/mocks/scripts/redownload-articles.mts",
"download": "tsx tests/mocks/scripts/download-archive-url.mts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FujoWebDev/AO3.js.git"
},
"author": "Essential Randomness <essential.randomn3ss@gmail.com>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node-lts": "^22.0.1",
"@types/node": "^20.10.5",
"@vitest/coverage-v8": "3.2.4",
"directory-tree": "^3.3.0",
"filenamify": "^6.0.0",
"htmlfy": "^1.0.0",
"msw": "^2.0.11",
"ts-node": "^10.4.0",
"ts-to-zod": "^5.1.0",
"tsdown": "^0.15.7",
"tsx": "^4.19.2",
"typescript": "^5.1.6",
"vite": "^7.0.4",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"zod": "^3.23.8"
},
"peerDependencies": {
"zod": "^3.0.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"dependencies": {
"cheerio": "^1.1.2"
}
}