-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) Β· 1.54 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
{
"name": "hippotable",
"version": "0.1.0",
"description": "Lightweight data analysis in your browser",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "npx vitest --run",
"check": "astro check && tsc --noEmit && prettier --check .",
"format:all": "prettier --write .",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/thoughtspile/hippotable.git"
},
"author": "Vladimir Klepov v.klepov@gmail.com",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/thoughtspile/hippotable/issues"
},
"homepage": "https://github.com/thoughtspile/hippotable#readme",
"dependencies": {
"@astrojs/check": "^0.3.4",
"@astrojs/solid-js": "^3.0.2",
"@tanstack/solid-virtual": "^3.0.0-beta.6",
"@tanstack/virtual-core": "^3.0.0-alpha.1",
"arquero": "^5.2.0",
"astro": "^3.2.3",
"banditypes": "^0.2.5",
"chart.js": "^4.4.3",
"escape-string-regexp": "^5.0.0",
"just-sort-by": "^3.2.0",
"nanoid": "^5.0.4",
"solid-icons": "^1.0.12",
"solid-js": "^1.7.12",
"typescript": "^5.3.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.3",
"solid-devtools": "^0.28.1",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md}": "prettier --write"
}
}