-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.69 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
66
67
68
69
70
{
"name": "@chemistry/crystalview",
"version": "3.1.2",
"description": "Crystal Structure Visualization Library",
"type": "module",
"author": {
"name": "Volodymyr Vreshch",
"url": "https://vreshch.com/"
},
"license": "MIT",
"keywords": [
"cheminformatics",
"crystallography",
"cod",
"crystal structure",
"3d visualization"
],
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chemistry/crystalview"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"private": false,
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./crystalview.css": "./dist/crystalview.css"
},
"scripts": {
"build": "tsc && npm run copy:css",
"copy:css": "cp src/crystal-view.css dist/crystalview.css",
"test": "vitest run",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"verify": "npm run type-check && npm run lint && npm run format:check && npm run test && npm run build"
},
"dependencies": {
"@chemistry/elements": "^3.6.0",
"@chemistry/math": "^3.6.0",
"@chemistry/space-groups": "^3.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^10.0.0",
"jsdom": "^30.0.1",
"prettier": "^3.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"vitest": "^4.0.0"
}
}