-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "react-vega",
"description": "A React wrapper for vega-embed",
"repository": "git@github.com:vega/react-vega.git",
"author": "Jake Adler <dev.jakeadler@gmail.com>",
"version": "0.0.0",
"type": "module",
"scripts": {
"precommit": "npm run lint && pretty-quick --staged",
"dev": "ladle serve",
"build": "rimraf dist && tsc -b && vite build",
"build-demo": "ladle build",
"commitlint": "commitlint --edit",
"lint": "eslint src",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19",
"vega-embed": "^7"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.30.1",
"@ladle/react": "^5.0.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.30.1",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"jiti": "^2.4.2",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4"
}
}