-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 2.93 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
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
107
108
109
110
111
112
113
{
"name": "react-ocl",
"version": "7.0.2",
"description": "React components integrating OpenChemLib",
"keywords": [
"react",
"react-component",
"ocl",
"openchemlib"
],
"type": "module",
"files": [
"lib",
"lib-cjs",
"base.d.ts",
"base.mjs",
"base.cjs",
"core.d.ts",
"core.mjs",
"core.cjs",
"full.d.ts",
"full.mjs",
"full.cjs",
"minimal.d.ts",
"minimal.mjs",
"minimal.cjs",
"src"
],
"exports": {
".": {
"types": "./minimal.d.ts",
"require": "./minimal.cjs",
"default": "./minimal.mjs"
},
"./base": {
"types": "./base.d.ts",
"require": "./base.cjs",
"default": "./base.mjs"
},
"./minimal": {
"types": "./minimal.d.ts",
"require": "./minimal.cjs",
"default": "./minimal.mjs"
},
"./core": {
"types": "./core.d.ts",
"require": "./core.cjs",
"default": "./core.mjs"
},
"./full": {
"types": "./full.d.ts",
"require": "./full.cjs",
"default": "./full.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/zakodium-oss/react-ocl.git"
},
"homepage": "https://github.com/zakodium-oss/react-ocl#readme",
"bugs": "https://github.com/zakodium-oss/react-ocl/issues",
"author": "Michaël Zasso <[email protected]>",
"scripts": {
"build-storybook": "storybook build",
"check-types": "tsc --noEmit",
"compile": "tsc -p tsconfig.esm.json",
"compile-cjs": "tsc -p tsconfig.cjs.json",
"postcompile-cjs": "echo '{\"type\":\"commonjs\"}' > lib-cjs/package.json",
"dev": "storybook dev -p 6006",
"eslint": "eslint src stories",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile && npm run compile-cjs",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run check-types && npm run eslint && npm run prettier",
"test-only": "vitest run"
},
"prettier": {
"arrowParens": "always",
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"trailingComma": "all"
},
"license": "MIT",
"peerDependencies": {
"openchemlib": ">=8",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@types/react-test-renderer": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.16.0",
"eslint-config-cheminfo-react": "^15.0.0",
"eslint-config-cheminfo-typescript": "^17.0.0",
"eslint-plugin-storybook": "^0.11.1",
"openchemlib": "^8.17.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"vite": "^5.4.8",
"vitest": "^2.1.8"
}
}