-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 953 Bytes
/
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
{
"name": "scp-api.js",
"version": "2.0.0",
"description": "Scrapper for SCP-wiki info.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsx test.ts",
"build": "tsup",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iFraan/scp-api.js.git"
},
"keywords": [
"scp-api",
"scp",
"wrapper",
"scrapper",
"scp-wiki",
"scp-api-js",
"scp-api-ts"
],
"author": "ifraan_",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iFraan/scp-api.js/issues"
},
"homepage": "https://github.com/iFraan/scp-api.js#readme",
"dependencies": {
"axios": "^1.7.7",
"jsdom": "^20.0.3"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}