-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.93 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dataconsole",
"version": "0.0.1",
"description": "Minimalist web console for displaying tabular data, charts, and markdown in browser",
"type": "module",
"main": "./src/index.js",
"files": [
"src",
"dist",
"index.html",
"style.css",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./src/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AlphaQuantJS/dataconsole.git",
"directory": "DataConsole"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"release": "pnpm build && changeset publish",
"prepare": "husky install",
"precommit": "pnpm format && pnpm lint && pnpm test",
"prepublishOnly": "pnpm test",
"publish": "npm publish --access public"
},
"keywords": [
"dataconsole",
"data-visualization",
"dataframe",
"plotly",
"markdown",
"javascript",
"browser-console",
"data-analysis",
"visualization",
"tabular-data",
"finance",
"analytics",
"quant",
"alphaquant"
],
"author": "Alex Kalinovsky <alex.k@alphaquant.io>",
"license": "MIT",
"packageManager": "pnpm@10.7.1",
"dependencies": {
"marked": "^9.1.0",
"plotly.js-dist-min": "^2.27.0",
"tinyframejs": "^1.0.4"
},
"devDependencies": {
"@changesets/cli": "2.29.2",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@vitest/coverage-v8": "^3.1.2",
"eslint": "^8.56.0",
"eslint-plugin-jsdoc": "^48.0.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"vite": "^5.0.10",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=16.0.0"
}
}