-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "etsy-ts",
"version": "4.1.0",
"description": "Etsy API wrapper written in typescript.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"axios": "^1.4.0",
"axios-auth-refresh": "^3.3.6",
"form-data": "^4.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash.unescape": "^4.0.7",
"@types/node": "^14.14.22",
"fs-extra": "^10.1.0",
"lodash.unescape": "^4.0.1",
"rimraf": "^3.0.2",
"swagger-typescript-api": "^12.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"prepublishOnly": "tsc",
"watch": "tsc --watch",
"build": "rimraf dist && tsc",
"generate-api": "ts-node ./generate/generate.ts",
"run-sample": "ts-node examples/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Granga/etsy-ts.git"
},
"keywords": [
"etsy",
"api",
"typescript",
"ts",
"wrapper"
],
"author": "Risto Petroski <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Granga/etsy-ts/issues"
},
"homepage": "https://github.com/Granga/etsy-ts#readme"
}