openchemlib 9.1.1 → 9.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -22
- package/dist/openchemlib.d.ts +44 -0
- package/dist/openchemlib.debug.js +2112 -1945
- package/dist/openchemlib.js +15 -15
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openchemlib",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Manipulate molecules",
|
|
6
6
|
"keywords": [
|
|
@@ -21,13 +21,14 @@
|
|
|
21
21
|
"build-js-min": "esbuild lib/index.js --minify --bundle --format=esm --outfile=dist/openchemlib.js",
|
|
22
22
|
"build-js-types": "node -e \"fs.cpSync('lib/index.d.ts', 'dist/openchemlib.d.ts')\"",
|
|
23
23
|
"build-resources": "node scripts/build_resources.js",
|
|
24
|
+
"check-types": "tsc --noEmit",
|
|
24
25
|
"clean": "node scripts/clean.js",
|
|
25
26
|
"copy-openchemlib": "node scripts/build.js copy:openchemlib",
|
|
26
27
|
"eslint": "eslint .",
|
|
27
28
|
"eslint-fix": "npm run eslint -- --fix",
|
|
28
29
|
"prettier": "prettier --check .",
|
|
29
30
|
"prettier-write": "prettier --write .",
|
|
30
|
-
"test": "npm run build && npm run test-only && npm run eslint && npm run prettier",
|
|
31
|
+
"test": "npm run build && npm run test-only && npm run check-types && npm run eslint && npm run prettier",
|
|
31
32
|
"test-only": "vitest run",
|
|
32
33
|
"vite": "vite --open",
|
|
33
34
|
"vite-build": "vite build",
|
|
@@ -60,26 +61,26 @@
|
|
|
60
61
|
},
|
|
61
62
|
"homepage": "https://github.com/cheminfo/openchemlib-js",
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"@types/node": "^22.
|
|
64
|
+
"@types/node": "^22.15.3",
|
|
64
65
|
"autoprefixer": "^10.4.21",
|
|
65
66
|
"benchmark": "^2.1.4",
|
|
66
|
-
"esbuild": "^0.25.
|
|
67
|
-
"eslint": "^9.
|
|
67
|
+
"esbuild": "^0.25.3",
|
|
68
|
+
"eslint": "^9.26.0",
|
|
68
69
|
"eslint-config-cheminfo-typescript": "^18.0.0",
|
|
69
70
|
"fast-png": "^6.3.0",
|
|
70
71
|
"globals": "^16.0.0",
|
|
71
72
|
"gwt-api-exporter": "^3.0.0",
|
|
72
73
|
"image-js": "0.0.0-next-692b15513a",
|
|
73
|
-
"openchemlib-utils": "^
|
|
74
|
+
"openchemlib-utils": "^8.1.1",
|
|
74
75
|
"postcss": "^8.5.3",
|
|
75
76
|
"prettier": "^3.5.3",
|
|
76
77
|
"tailwindcss": "^3.4.13",
|
|
77
78
|
"typescript": "^5.8.3",
|
|
78
|
-
"vite": "^6.
|
|
79
|
-
"vitest": "^3.1.
|
|
79
|
+
"vite": "^6.3.4",
|
|
80
|
+
"vitest": "^3.1.2",
|
|
80
81
|
"yargs": "^17.7.2"
|
|
81
82
|
},
|
|
82
83
|
"volta": {
|
|
83
|
-
"node": "22.
|
|
84
|
+
"node": "22.15.0"
|
|
84
85
|
}
|
|
85
86
|
}
|