-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
{
"name": "tslab-widgets",
"version": "0.1.0",
"description": "A set of widgets for ts-lab environment including financial charts",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"lint": "npx eslint",
"reset": "rm -rf node_modules && rm -rf dist && npm install"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"tslab",
"jupyter",
"widgets",
"chart",
"candlesticks",
"json",
"csv",
"typescript",
"ipynb",
"data science",
"jupyter-lab",
"notebook",
"lightweight-charts"
],
"author": "Rodrigo P. (https://github.com/rodrigopivi)",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigopivi/tslab-widgets"
},
"bugs": {
"url": "https://github.com/rodrigopivi/tslab-widgets/issues"
},
"homepage": "https://github.com/rodrigopivi/tslab-widgets#readme",
"private": false,
"dependencies": {
"tslab": "1.0.22"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-react": "7.24.7",
"@types/node": "22.4.1",
"@types/react": "18.3.4",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"cspell": "8.14.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-perfectionist": "2.11.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "54.0.0",
"eslint-plugin-unused-imports": "3.2.0",
"lightweight-charts": "4.2.0",
"prettier": "3.3.3",
"react": "18.3.1",
"tslib": "2.6.3",
"typescript": "5.5.4",
"webpack-cli": "5.1.4"
}
}