This repository was archived by the owner on Feb 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.01 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@cmru-comsci-66/cmru-api",
"version": "0.5.0",
"keywords": [
"api",
"axios",
"cmru",
"client"
],
"homepage": "https://cmru-computer-science-66.github.io/CMRU-API/",
"bugs": {
"url": "https://github.com/CMRU-Computer-Science-66/CMRU-API/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CMRU-Computer-Science-66/CMRU-API.git"
},
"license": "MIT",
"author": "Faelayis <48393914+Faelayis@users.noreply.github.com>",
"type": "module",
"exports": {
".": {
"node": {
"import": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"require": {
"types": "./dist/node/index.d.cts",
"default": "./dist/node/index.cjs"
}
},
"browser": {
"import": "./dist/browser/index.js",
"default": "./dist/browser/index.global.js"
},
"default": {
"import": {
"types": "./dist/node/index.d.ts",
"default": "./dist/neutral/index.js"
},
"require": {
"types": "./dist/node/index.d.cts",
"default": "./dist/neutral/index.cjs"
}
}
}
},
"main": "./dist/node/index.cjs",
"module": "./dist/node/index.js",
"browser": "./dist/browser/index.js",
"types": "./dist/node/index.d.ts",
"bin": {
"cmru-api": "./dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch .",
"dev:serve": "tsup --watch . --onSuccess 'clear && bun serve'",
"dev:test": "tsup --watch . --onSuccess 'clear && tsx test.ts'",
"docs": "typedoc",
"fix": "eslint . --fix",
"preinstall": "npx only-allow bun",
"lint": "eslint .",
"pre-commit": "bunx lint-staged --quiet",
"prepare": "husky",
"prettier": "prettier --write . --ignore-unknown",
"scraper": "bun ./scraper/index.ts",
"serve": "tsx ./src/cli/index.ts serve",
"start": "tsx test.ts"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@faker-js/faker": "^10.1.0",
"@types/user-agents": "^1.0.4",
"axios": "^1.13.2",
"cheerio": "^1.1.2",
"crypto-js": "^4.2.0",
"user-agents": "^1.1.669"
},
"devDependencies": {
"@eslint/compat": "1.4.1",
"@eslint/js": "9.39.1",
"@jsdevtools/version-bump-prompt": "6.1.0",
"@types/bun": "latest",
"@types/cheerio": "1.0.0",
"@types/crypto-js": "4.2.2",
"@typescript-eslint/eslint-plugin": "8.46.4",
"@typescript-eslint/parser": "8.46.4",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-unicorn": "62.0.0",
"husky": "9.1.7",
"jiti": "2.6.1",
"lint-staged": "16.2.6",
"prettier": "3.6.2",
"prettier-plugin-packagejson": "2.5.19",
"prettier-plugin-sort-json": "4.1.1",
"puppeteer": "24.29.1",
"puppeteer-core": "24.29.1",
"tsup": "8.5.0",
"tsx": "4.20.6",
"typedoc": "0.28.14",
"typedoc-plugin-markdown": "4.9.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.4"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.2",
"publishConfig": {
"access": "public"
}
}