-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
103 lines (103 loc) · 3.29 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
{
"name": "openchemlib",
"version": "8.17.0",
"description": "Manipulate molecules",
"keywords": [
"chemistry",
"molecule",
"molfile",
"SMILES"
],
"scripts": {
"build:min": "node scripts/build.js build --mode=min",
"build:pretty": "node scripts/build.js build --mode=pretty -s pretty",
"compile:min": "node scripts/build.js compile --mode=min",
"compile:pretty": "node scripts/build.js compile --mode=pretty",
"copy:openchemlib": "node scripts/build.js copy:openchemlib",
"export": "node scripts/build.js export",
"build": "npm run build:min && npm run build-full-pretty",
"build-core": "npm run build:min -- -m core",
"build-debug-core": "npm run build:pretty -- -m core --verbose",
"build-debug-full": "npm run build:pretty -- -m full --verbose",
"build-debug-minimal": "npm run build:pretty -- -m minimal --verbose",
"build-esm": "npm run build-full-pretty && npm run build-esm-bundle-export",
"build-esm-bundle": "esbuild full.pretty.js --bundle --sourcemap --format=esm --outfile=distesm/full.pretty.js",
"build-esm-bundle-export": "npm run build-esm-bundle && node scripts/build_esm_bundle_types.js",
"build-esm-bundle-types": "node scripts/esm_bundle_types.js",
"build-esm-bundle-watch": "npm run build-esm-bundle -- --watch",
"build-help": "node scripts/build_help.mjs",
"build-full-pretty": "npm run build:pretty -- -m full",
"build-minimal": "npm run build:min -- -m minimal",
"eslint": "eslint .",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run build && npm run test-only && npm run eslint && npm run prettier",
"test-only": "jest",
"vite": "vite --open",
"vite-build": "vite build",
"vite-preview": "vite preview"
},
"main": "./core.js",
"exports": {
".": "./core.js",
"./minimal": "./minimal.js",
"./minimal.js": "./minimal.js",
"./core": "./core.js",
"./core.js": "./core.js",
"./full": "./full.js",
"./full.js": "./full.js",
"./full.pretty": "./full.pretty.js",
"./full.pretty.js": "./full.pretty.js"
},
"files": [
"dist",
"lib",
"types.d.ts",
"minimal.js",
"minimal.d.ts",
"core.js",
"core.d.ts",
"full.js",
"full.d.ts",
"full.pretty.js",
"full.pretty.d.ts"
],
"repository": {
"type": "git",
"url": "git://github.com/cheminfo/openchemlib-js.git"
},
"license": "BSD-3-Clause",
"author": "Michaël Zasso",
"contributors": [
"Christian Rufener"
],
"bugs": {
"url": "https://github.com/cheminfo/openchemlib-js/issues"
},
"homepage": "https://github.com/cheminfo/openchemlib-js",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"autoprefixer": "^10.4.20",
"benchmark": "^2.1.4",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-cheminfo-typescript": "^16.0.0",
"fast-png": "^6.2.0",
"globals": "^15.10.0",
"gwt-api-exporter": "^2.0.0",
"image-js": "0.0.0-next-d280f46ab7",
"jest": "^29.7.0",
"openchemlib-utils": "^6.4.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"yargs": "^17.7.2"
},
"volta": {
"node": "22.9.0"
}
}