-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "bacloud.js",
"version": "0.0.0",
"description": "Alternative client to consume bacloud API",
"author": "aryan02420",
"license": "MIT",
"type": "module",
"main": "lib/bacloud.js",
"types": "lib/bacloud.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "echo \"No test specified\" && exit 0",
"build": "rollup -c rollup.config.js",
"dev": "npm run build -- --watch",
"lint": "npm run lint:tsc && npm run lint:prettier && npm run lint:eslint",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint src *.js",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --fix src *.js",
"prepare": "husky install",
"precommit": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.2.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"rollup": "^2.76.0",
"rollup-plugin-dts": "^4.2.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"keywords": [
"bacloud",
"ballistica",
"bombsquad"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bombsquad02420/bacloud.js.git"
},
"bugs": {
"url": "https://github.com/bombsquad02420/bacloud.js/issues"
},
"homepage": "https://github.com/bombsquad02420/bacloud.js#readme"
}