forked from ProjectOpenSea/stream-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@opensea/stream-js",
"version": "0.0.14",
"description": "An SDK to receive pushed updates from OpenSea over websocket",
"license": "MIT",
"author": "OpenSea Developers",
"homepage": "https://docs.opensea.io/reference/stream-api-overview",
"repository": "https://github.com/ProjectOpenSea/stream-js",
"bugs": {
"url": "https://github.com/ProjectOpenSea/stream-js/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"check-types": "tsc --noEmit",
"dev": "microbundle watch",
"eslint": "eslint . --max-warnings 0 --ext .js,.ts --fix",
"lint:check": "concurrently \"npm run check-types\" \"npm run eslint\" \"npm run prettier:check\" \"npm run prettier:check:package.json\"",
"prepare": "husky install",
"test": "jest",
"prettier:check": "prettier --check .",
"prettier:check:package.json": "prettier-package-json --list-different",
"prettier:fix": "prettier --write ."
},
"sideEffects": false,
"dependencies": {
"phoenix": "^1.6.2"
},
"devDependencies": {
"@types/jest": "27.5.0",
"@types/phoenix": "^1.5.4",
"@types/ws": "8.5.3",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"concurrently": "7.1.0",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "28.0.3",
"jest-environment-jsdom": "28.0.2",
"jest-websocket-mock": "2.3.0",
"lint-staged": "12.4.1",
"microbundle": "0.15.0",
"prettier": "2.6.2",
"prettier-package-json": "2.6.3",
"rdme": "7.2.0",
"ts-jest": "28.0.1",
"ts-node": "10.7.0",
"typescript": "4.6.4"
},
"keywords": [
"collectibles",
"crypto",
"ethereum",
"javascript",
"marketplace",
"nft",
"node",
"non-fungible-tokens",
"opensea",
"project-opensea",
"sdk",
"smart-contracts",
"websocket"
],
"engines": {
"node": "16.11.0"
},
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"lint-staged": {
"package.json": [
"prettier-package-json --write"
],
"**/*.{ts,tsx,js,jsx,html,md,mdx,yml,json}": [
"prettier --write"
],
"**/*.{ts,tsx,js,jsx}": [
"eslint --cache --fix"
]
},
"source": "src/index.ts",
"unpkg": "./dist/index.umd.js"
}