-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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
{
"name": "@bytewaveco/signal",
"version": "1.1.0",
"description": "An adjustable combination of technical indicators to be used for financial analysis.",
"keywords": [
"signal",
"finance",
"technicalindicators",
"technical",
"indicators",
"candle",
"candlestick",
"bytewave",
"bytewaveco"
],
"repository": {
"type": "git",
"url": "https://github.com/bytewaveco/signal.git"
},
"homepage": "https://github.com/bytewaveco/signal.git",
"bugs": {
"url": "https://github.com/bytewaveco/signal/issues",
"email": "kaden.griffith@bytewave.co"
},
"scripts": {
"build": "npm run clean && unbuild",
"clean": "rimraf dist",
"playground": "unbuild --stub && nodemon \"playground/server.ts\"",
"lint": "eslint --fix \"**/*\"",
"lint:ci": "eslint \"**/*\"",
"test": "vitest --coverage",
"test:ci": "vitest run --coverage"
},
"author": "Bytewave <info@bytewave.co> (bytewave.co)",
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"dependencies": {
"technicalindicators": "^3.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitest/coverage-istanbul": "^0.25.4",
"coinbase-pro-node": "^6.0.0",
"dayjs": "^1.11.6",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vitest-globals": "^1.2.0",
"prettier": "^2.8.0",
"prettier-plugin-organize-imports": "^3.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vite": "^3.2.5",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.25.4"
}
}