-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.36 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tinyframejs",
"version": "1.0.4",
"description": "Lightweight, high-performance tabular data engine for JavaScript",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"imports": {
"#/*": "./packages/*"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./src/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AlphaQuantJS/tinyframejs.git",
"directory": "TinyFrameJS"
},
"scripts": {
"lint": "eslint . --ext .js,.mjs --fix",
"lint:check": "eslint . --ext .js,.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"build": "echo \"No build step (pure JS)\"",
"release": "pnpm build && changeset publish",
"prepare": "husky install",
"precommit": "pnpm format && pnpm lint && pnpm test",
"prepublishOnly": "pnpm test",
"publish": "npm publish --access public"
},
"keywords": [
"dataframe",
"data-processing",
"tabular-data",
"financial-data",
"javascript",
"performance",
"data-analysis",
"columnar-storage",
"typescript",
"finance",
"analytics",
"quant",
"alphaquant",
"quantanalytics"
],
"author": "Alex Kalinovsky <alex.k@alphaquant.io>",
"license": "MIT",
"packageManager": "pnpm@10.7.1",
"devDependencies": {
"@changesets/cli": "2.29.2",
"@commitlint/config-conventional": "19.8.0",
"@vitest/coverage-v8": "^3.1.2",
"canvas": "^3.1.0",
"commitlint": "19.8.0",
"csv-parse": "^5.6.0",
"eslint": "^9.25.1",
"eslint-plugin-jsdoc": "^50.6.10",
"husky": "9.1.7",
"lint-staged": "15.5.1",
"prettier": "3.5.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"vitest": "^3.1.2"
},
"peerDependencies": {
"csv-parse": "^5.0.0",
"exceljs": "^4.4.0",
"sqlite": "^5.0.0",
"sqlite3": "^5.0.0"
},
"peerDependenciesMeta": {
"exceljs": {
"optional": true
},
"csv-parse": {
"optional": true
},
"sqlite": {
"optional": true
},
"sqlite3": {
"optional": true
}
},
"dependencies": {
"apache-arrow": "^20.0.0",
"chart.js": "^4.4.9",
"exceljs": "^4.4.0"
},
"engines": {
"node": ">=16.0.0"
}
}