-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.17 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@pseinfo/database-schema",
"description": "TypeScript type declarations for the @pseinfo database",
"version": "0.7.1",
"license": "MIT",
"author": {
"name": "Paul Köhler",
"email": "webmaster@komed3.de",
"url": "https://komed3.de"
},
"homepage": "https://pseinfo.github.io/database-schema",
"repository": {
"type": "git",
"url": "https://github.com/pseinfo/database-schema.git"
},
"bugs": {
"url": "https://github.com/pseinfo/database-schema/issues"
},
"keywords": [
"database",
"schema",
"chemistry",
"periodic-table",
"elements",
"compounds",
"minerals",
"mixtures",
"nuclides",
"types",
"typescript",
"type-definitions",
"pseinfo"
],
"files": [
"config",
"enum",
"model",
"README.md",
"LICENSE"
],
"type": "module",
"exports": {
".": {
"types": "./model/index.ts",
"default": "./model/index.ts",
"import": "./model/index.ts"
},
"./enum/*": {
"types": "./enum/*.ts",
"default": "./enum/*.ts",
"import": "./enum/*.ts"
},
"./base/*": {
"types": "./model/base/*.ts",
"default": "./model/base/*.ts",
"import": "./model/base/*.ts"
},
"./collection/*": {
"types": "./model/collection/*.ts",
"default": "./model/collection/*.ts",
"import": "./model/collection/*.ts"
},
"./domain/*": {
"types": "./model/domain/*.ts",
"default": "./model/domain/*.ts",
"import": "./model/domain/*.ts"
},
"./registry/*": {
"types": "./model/registry/*.ts",
"default": "./model/registry/*.ts",
"import": "./model/registry/*.ts"
},
"./utility/*": {
"types": "./model/utility/*.ts",
"default": "./model/utility/*.ts",
"import": "./model/utility/*.ts"
}
},
"scripts": {
"lint": "tsc",
"docs": "typedoc --logLevel Verbose --options typedoc.json"
},
"dependencies": {
"@pseinfo/hp-statements": "^1.0.0",
"devtypes": "^2.1.0"
},
"devDependencies": {
"typedoc": "^0.28.19",
"typedoc-github-theme": "^0.4.0",
"typedoc-plugin-missing-exports": "^4.1.3",
"typescript": "^6.0.3"
}
}