-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@superfluid-finance/sdk-redux",
"description": "SDK Redux for streamlined front-end application development with Superfluid Protocol",
"version": "0.7.0",
"bugs": "https://github.com/superfluid-finance/protocol-monorepo/issues",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"graphql-request": "6.1.0",
"promise-retry": "2.0.1",
"lodash.memoize": "4.1.2",
"lodash.uniqby": "4.7.0"
},
"devDependencies": {
"@reduxjs/toolkit": "^2",
"@types/promise-retry": "^1.1.6",
"@types/lodash.memoize": "^4.1.9",
"@types/lodash.uniqby": "^4.7.9",
"@types/react": "^19",
"@types/react-dom": "^19",
"react": "^19",
"react-dom": "^19",
"react-redux": "^9"
},
"directories": {
"test": "test"
},
"files": [
"dist/module",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"homepage": "https://docs.superfluid.finance/",
"keywords": [],
"license": "MIT",
"module": "dist/module/index.js",
"peerDependencies": {
"@reduxjs/toolkit": ">=2",
"@superfluid-finance/sdk-core": ">=0.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/superfluid-finance/protocol-monorepo.git",
"directory": "packages/sdk-redux"
},
"scripts": {
"build": "rm -rf dist && run-p -l build:*",
"build:module": "tsc -p tsconfig.json",
"lint": "run-s lint:*",
"lint:eslint": "eslint src --ext .ts",
"fix": "run-s fix:*",
"fix:eslint": "yarn lint:eslint --fix",
"test": "echo 'TODO: Tests'",
"watch:build": "tsc -p tsconfig.json -w",
"doc": "run-s doc:html",
"doc:html": "typedoc src/ --out dist/docs && copyfiles -f ./sf-logo.png ./dist/docs/",
"doc:json": "typedoc src/ --json dist/docs/typedoc.json",
"check-updates": "ncu --target minor --dep prod,dev",
"cloc": "sh tasks/cloc.sh"
},
"sideEffects": [
"./dist/module/sdkReduxConfig.js"
],
"typings": "dist/module/index.d.ts"
}