-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 947 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
{
"name": "@rair-protocol/sdk",
"version": "0.0.9",
"description": "SDK for RAIR backend APIs",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rairprotocol/rair-sdk.git"
},
"keywords": [
"sdk",
"rair",
"frontend"
],
"author": "RAIR",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/rairprotocol/rair-sdk/issues"
},
"homepage": "https://github.com/rairprotocol/rair-sdk#readme",
"devDependencies": {
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}