-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.83 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
{
"name": "react-ocl-nmr",
"version": "3.1.0",
"description": "A component to display chemical structure for NMR spectra assignments",
"type": "module",
"files": [
"lib",
"lib-cjs",
"src"
],
"exports": {
".": {
"types": "./lib/OCLnmr.d.ts",
"require": "./lib-cjs/OCLnmr.js",
"default": "./lib/OCLnmr.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/react-ocl-nmr.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium-oss/react-ocl-nmr/issues"
},
"peerDependencies": {
"openchemlib": ">=8"
},
"dependencies": {
"openchemlib": "^8.15.0",
"openchemlib-utils": "^6.4.1",
"react-ocl": "^7.0.2"
},
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-cjs",
"dev": "vite",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run eslint && npm run check-types",
"test-coverage": "npm run test-only -- --coverage",
"test-only": "jest",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"posttsc-cjs": "echo '{\"type\":\"commonjs\"}' > lib-cjs/package.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^9.12.0",
"eslint-config-zakodium": "^13.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.9"
}
}