-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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": "@rewired/telnyx-10dlc",
"version": "1.1.0",
"description": "TypeScript client for Telnyx 10DLC API.",
"keywords": [
"telnyx",
"10dlc"
],
"homepage": "https://github.com/politics-rewired/telnyx-10dlc#readme",
"bugs": {
"url": "https://github.com/politics-rewired/telnyx-10dlc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/politics-rewired/telnyx-10dlc.git"
},
"license": "MIT",
"author": "Benjamin Chrobot <[email protected]>",
"main": "./dist/index",
"typings": "./dist/",
"files": [
"/dist"
],
"scripts": {
"generate": "ts-node scripts/generate-api.ts",
"build": "tsc",
"release": "standard-version",
"prepack": "yarn rimraf dist/ && yarn build"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.10",
"openapi-typescript-codegen": "^0.9.3",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}