-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "animaljam.js",
"version": "1.0.31",
"description": "Animal Jam API Client",
"author": "Sxip",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/sxip/animaljam.js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sxip/animaljam.js"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json && fix-esm-import-path ./dist",
"build:esm": "tsc -p tsconfig.esm.json && fix-esm-import-path ./dist"
},
"dependencies": {
"@electron/asar": "^3.2.10",
"amfjs": "^1.3.1",
"cheerio": "^1.0.0-rc.12",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2",
"p-limit": "^6.1.0",
"sharp": "^0.33.5",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.7",
"eslint": "^9.1.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.5",
"typescript": "^5.7.0-dev.20240920"
}
}