-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@chemistry/molpad",
"version": "3.1.0",
"description": "Molecule Editor",
"type": "module",
"author": {
"name": "Volodymyr Vreshch",
"url": "https://vreshch.com/"
},
"license": "MIT",
"keywords": [
"cheminformatics",
"molecular editor",
"molecule sketcher"
],
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chemistry/molpad"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"private": false,
"sideEffects": [
"**/*.css"
],
"files": [
"dist",
"README.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./molpad.css": "./dist/molpad.css"
},
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"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.0.0",
"@chemistry/molecule": "^3.0.0",
"zustand": "^5.0.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^10.0.0",
"jsdom": "^28.1.0",
"prettier": "^3.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.0",
"vitest": "^4.0.0"
}
}