forked from ProjectOpenSea/stream-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.63 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
92
93
94
95
{
"name": "@opensea/stream-js",
"version": "0.1.2",
"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"
},
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js",
"types": "./dist/index.d.ts"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "microbundle",
"check-types": "tsc --noEmit",
"coverage": "npm run test -- --coverage --collectCoverageFrom='./src/**'",
"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",
"prettier:check": "prettier --check .",
"prettier:check:package.json": "prettier-package-json --list-different",
"prettier:fix": "prettier --write . && prettier-package-json --write package.json",
"test": "jest"
},
"sideEffects": false,
"types": "./dist/index.d.ts",
"dependencies": {
"phoenix": "^1.6.15"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/phoenix": "^1.5.6",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"concurrently": "^8.0.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-websocket-mock": "^2.4.0",
"lint-staged": "^13.2.2",
"microbundle": "^0.15.1",
"prettier": "^2.8.8",
"prettier-package-json": "^2.6.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"keywords": [
"collectibles",
"crypto",
"ethereum",
"javascript",
"marketplace",
"nft",
"node",
"non-fungible-tokens",
"opensea",
"project-opensea",
"sdk",
"smart-contracts",
"websocket"
],
"engines": {
"node": ">=16.11.0"
},
"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"
}