-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "purr-image",
"version": "1.1.2",
"description": "PurrBot ImageAPI Javascript Wrapper",
"main": "./dist/index.js",
"typings": "./typings/index.d.ts",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b",
"dev": "tsc-watch -p ./tsconfig.json",
"prepare": "npm run build",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justapieop/purr-image.git"
},
"keywords": [
"purr-image",
"purrbot",
"imageapi"
],
"author": "JustAPie",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/justapieop/purr-image/issues"
},
"homepage": "https://github.com/justapieop/purr-image#readme",
"devDependencies": {
"@types/node": "^16.9.3",
"@types/node-fetch": "^3.0.3",
"@types/url-join": "^4.0.1",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.21.4",
"node-fetch": "^3.0.0",
"url-join": "^4.0.1"
}
}