-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"name": "@blockworks-foundation/mango-feeds",
"version": "0.1.7",
"description": "Typescript Client for mango-feeds.",
"repository": "https://github.com/blockworks-foundation/mango-feeds",
"author": {
"name": "Blockworks Foundation",
"email": "[email protected]",
"url": "https://blockworks.foundation"
},
"sideEffects": false,
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && yarn build:browser && yarn build:node && yarn build:types",
"build:node": " tsc -p tsconfig.cjs.json --noEmit false",
"build:browser": "tsc -p tsconfig.esm.json --noEmit false",
"build:types": "tsc -p tsconfig.types.json --noEmit false",
"format": "prettier --check ./ts",
"lint": "eslint ./ts/client/src --ext ts --ext tsx --ext js --quiet",
"typecheck": "tsc --noEmit --pretty",
"prepublishOnly": "yarn validate && yarn build",
"validate": "yarn lint && yarn format"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^7.2.0",
"prettier": "^2.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.22.5",
"typescript": "^4.9.4",
"ws": "^8.13.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"ws": "^8.13.0"
},
"license": "AGPL-3.0-only"
}