-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@bobaboard/ao3.js",
"version": "0.20.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"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./urls": {
"import": {
"types": "./dist/urls.d.ts",
"default": "./dist/urls.js"
},
"require": {
"types": "./dist/urls.d.cts",
"default": "./dist/urls.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist/ && tsup src/index.ts src/urls.ts --format esm,cjs --dts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --no-cache .test.ts$ --verbose=true",
"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-ao3-url.mts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FujoWebDev/AO3.js.git"
},
"author": "Essential Randomness <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node-lts": "^22.0.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.10.5",
"cross-env": "^7.0.3",
"directory-tree": "^3.3.0",
"filenamify": "^6.0.0",
"jest": "^29.6.0",
"jest-esm-transformer": "^1.0.0",
"msw": "^2.0.11",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"tsup": "^7.1.0",
"tsx": "^4.19.2",
"typescript": "^5.1.6"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10"
}
}