-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 KB
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
{
"name": "@solar-network/client",
"description": "A simple TypeScript API client for the Solar blockchain",
"version": "4.0.1",
"contributors": [
"alessiodf <gym@solar.org>",
"cactus1549 <cactus1549@solar.org>",
"ARK Ecosystem <info@ark.io>"
],
"license": "CC-BY-ND-4.0",
"type": "module",
"files": [
"/dist"
],
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "tsc",
"build:watch": "pnpm build -w",
"clean": "rimraf dist tmp",
"format": "pnpm lint && pnpm prettier",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prepublishOnly": "pnpm build",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./**/*.{ts,js,json,md}\""
},
"dependencies": {
"got": "12.5.2",
"is-url-superb": "6.1.0",
"node-dotify": "1.1.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "3.0.1",
"@types/prettier": "2.7.1",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"cross-env": "7.0.3",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typescript": "4.8.4"
},
"engines": {
"node": ">=14.x"
}
}