-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.4 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.4 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
{
"name": "selfies-js",
"version": "0.3.6",
"description": "Pure JavaScript SELFIES encoder/decoder with DSL for molecular composition",
"type": "module",
"main": "src/index.js",
"bin": {
"selfies-js": "./src/cli.js"
},
"exports": {
".": "./src/index.js",
"./dsl": "./src/dsl/index.js",
"./syntax": "./src/syntax.js"
},
"files": [
"src/**/*.js",
"README.md",
"LICENSE"
],
"scripts": {
"test": "bun test",
"bench": "bun run bench/decode.bench.js",
"lint": "echo 'Linting...'; exit 0",
"prepublishOnly": "bun test",
"pack": "bun pm pack",
"publish:dry": "bun pm pack --dry-run"
},
"keywords": [
"selfies",
"smiles",
"chemistry",
"cheminformatics",
"molecules",
"molecular-design",
"drug-discovery",
"encoder",
"decoder",
"dsl",
"parser"
],
"author": "SELFIES Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ghost---Shadow/selfies-js.git"
},
"bugs": {
"url": "https://github.com/Ghost---Shadow/selfies-js/issues"
},
"homepage": "https://github.com/Ghost---Shadow/selfies-js#readme",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@rdkit/rdkit": "^2025.3.4-1.0.0"
},
"peerDependenciesMeta": {
"@rdkit/rdkit": {
"optional": true
}
},
"devDependencies": {
"@rdkit/rdkit": "^2025.3.4-1.0.0"
}
}