-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "@i-vresse/pdbtbx-ts",
"version": "0.1.7",
"description": "Wrapper around [pdbtbx rust library](https://crates.io/crates/pdbtbx) for reading (crystallographic) Protein Data Bank (PDB) and mmCIF files in JavaScript.",
"scripts": {
"build": "wasm-pack build --target web && tsup",
"test": "node --test tests",
"clean": "rm -rf dist pkg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i-VRESSE/pdbtbx-ts.git"
},
"author": "Stefan Verhoeven",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/i-VRESSE/pdbtbx-ts/issues"
},
"homepage": "https://github.com/i-VRESSE/pdbtbx-ts#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"tsup": "^6.1.2",
"typescript": "^4.7.3"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"keywords": [
"pdb",
"mmcif",
"parse"
],
"tsup": {
"format": "esm",
"entry": [
"src/index.ts"
],
"dts": true,
"target": "es2020",
"loader": {
".wasm": "base64"
}
},
"engines": {
"node": ">=16"
}
}