-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 970 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
{
"name": "flick-node-sdk",
"version": "0.0.1",
"description": "A Typescript interface for interacting with APIs from Flick.",
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist/*",
"release": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flick-network/flick-node-sdk.git"
},
"keywords": [
"flick",
"flick-sdk",
"node-sdk"
],
"author": "Flick.",
"license": "MIT",
"bugs": {
"url": "https://github.com/flick-network/flick-node-sdk/issues"
},
"homepage": "https://github.com/flick-network/flick-node-sdk#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"axios": "^1.5.1"
},
"devDependencies": {
"typescript": "^5.2.2"
}
}