-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.12 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
{
"name": "react-ocl",
"version": "8.4.0",
"license": "MIT",
"description": "React components integrating OpenChemLib",
"keywords": [
"react",
"react-component",
"ocl",
"openchemlib"
],
"author": "Michaël Zasso",
"type": "module",
"files": [
"lib",
"src"
],
"exports": {
".": "./lib/index.js"
},
"scripts": {
"build-storybook": "storybook build",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"dev": "storybook dev -p 6006",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-only && npm run test-storybook && npm run check-types && npm run eslint && npm run prettier",
"test-only": "vitest run --project=unit --project=story-unit --coverage",
"test-storybook": "vitest run --project=storybook",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc -p tsconfig.build.json"
},
"peerDependencies": {
"openchemlib": ">=8",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@storybook/addon-vitest": "^9.1.16",
"@storybook/react-vite": "^9.1.16",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@zakodium/tsconfig": "^1.0.2",
"eslint": "^9.39.0",
"eslint-config-cheminfo-react": "^18.0.1",
"eslint-config-cheminfo-typescript": "^20.0.0",
"eslint-plugin-storybook": "^9.1.16",
"jsdom": "^26.1.0",
"openchemlib": "^9.18.2",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rimraf": "^6.1.0",
"storybook": "^9.1.16",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/zakodium-oss/react-ocl.git"
},
"bugs": "https://github.com/zakodium-oss/react-ocl/issues",
"homepage": "https://github.com/zakodium-oss/react-ocl#readme",
"volta": {
"node": "24.11.0"
}
}