-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.87 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.87 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
{
"name": "hyperparam",
"version": "0.4.7",
"description": "Hyperparam CLI",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyparam/hyperparam-cli.git"
},
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.es.min.js",
"require": "./lib/index.umd.min.js"
},
"./global.css": "./lib/global.css",
"./hyperparam.css": "./lib/hyperparam.css"
},
"bin": {
"hyp": "bin/cli.js",
"hyperparam": "bin/cli.js"
},
"files": [
"bin",
"dist",
"lib",
"!**/*.stories.d.ts",
"!**/*.test.d.ts"
],
"scripts": {
"build:types": "tsc -p tsconfig.build.json",
"build:lib": "vite build -c vite.lib.config.ts && cp src/assets/global.css lib/global.css",
"build:app": "vite build",
"build": "run-s build:lib build:types build:app",
"coverage": "vitest run --coverage --coverage.include=src --coverage.include=bin --coverage.exclude=src/**/*.stories.tsx",
"dev:cli": "run-p -l watch:ts watch:cli watch:serve",
"dev": "run-p -l watch:ts watch:static",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "npm run build",
"serve": "node bin/cli.js",
"preserve": "npm run build",
"storybook": "storybook dev -p 6006",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"url": "run-p -l watch:ts watch:cli watch:url",
"preurl": "npm run build",
"watch:cli": "vite build --watch",
"watch:serve": "NODE_ENV=development nodemon bin/cli.js",
"watch:static": "vite",
"watch:ts": "tsc --watch",
"watch:url": "NODE_ENV=development nodemon bin/cli.js https://hyperparam.blob.core.windows.net/hyperparam/starcoderdata-js-00000-of-00065.parquet"
},
"dependencies": {
"hightable": "0.26.3",
"hyparquet": "1.25.1",
"hyparquet-compressors": "1.1.1",
"icebird": "0.3.1",
"squirreling": "0.9.4"
},
"devDependencies": {
"@storybook/react-vite": "10.2.13",
"@testing-library/react": "16.3.2",
"@types/node": "25.3.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"@vitest/coverage-v8": "4.0.18",
"eslint": "9.39.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-storybook": "10.2.13",
"globals": "17.4.0",
"jsdom": "28.1.0",
"nodemon": "3.1.14",
"npm-run-all": "4.1.5",
"react": "19.2.4",
"react-dom": "19.2.4",
"storybook": "10.2.13",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"peerDependencies": {
"react": "^18.3.1 || ^19",
"react-dom": "^18.3.1 || ^19"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}