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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#![warn(
missing_copy_implementations,
missing_debug_implementations,
missing_docs,
unsafe_code
)]
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::{collections::BTreeMap, fs, io::Read, path::Path, str::FromStr};
mod error;
pub use crate::error::Error;
pub type BinSet = BTreeMap<String, String>;
pub type DepsSet = BTreeMap<String, String>;
pub type EnginesSet = BTreeMap<String, String>;
pub type ScriptsSet = BTreeMap<String, String>;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
pub struct Bug {
pub email: Option<String>,
pub url: Option<String>,
}
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
pub struct Person {
pub name: String,
pub email: Option<String>,
pub url: Option<String>,
}
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(untagged)]
pub enum PersonReference {
Short(String),
Full(Person),
}
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(untagged)]
pub enum ManReference {
Single(String),
Multiple(Vec<String>),
}
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
pub struct Repository {
pub r#type: String,
pub url: String,
}
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(untagged)]
pub enum RepositoryReference {
Short(String),
Full(Repository),
}
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct Package {
pub name: String,
pub version: String,
pub description: Option<String>,
#[serde(default)]
pub keywords: Vec<String>,
pub homepage: Option<String>,
pub bugs: Option<Bug>,
pub license: Option<String>,
pub author: Option<PersonReference>,
#[serde(default)]
pub contributors: Vec<PersonReference>,
#[serde(default)]
pub files: Vec<String>,
pub main: Option<String>,
pub browser: Option<String>,
#[serde(default)]
pub bin: BinSet,
pub man: Option<ManReference>,
pub repository: Option<RepositoryReference>,
#[serde(default)]
pub scripts: ScriptsSet,
#[serde(default)]
pub dependencies: DepsSet,
#[serde(default)]
pub dev_dependencies: DepsSet,
#[serde(default)]
pub peer_dependencies: DepsSet,
#[serde(default)]
pub bundled_dependencies: DepsSet,
#[serde(default)]
pub optional_dependencies: DepsSet,
#[serde(default)]
pub engines: EnginesSet,
#[serde(default)]
pub private: bool,
#[serde(flatten)]
pub others: BTreeMap<String, Value>,
}
impl Package {
pub fn from_path(path: impl AsRef<Path>) -> Result<Self> {
let content = fs::read(path.as_ref())?;
Self::from_slice(content.as_slice())
}
pub fn from_reader<R: Read>(r: R) -> Result<Self> {
Ok(serde_json::from_reader(r)?)
}
pub fn from_slice(v: &[u8]) -> Result<Self> {
Ok(serde_json::from_slice(v)?)
}
}
impl FromStr for Package {
type Err = Error;
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
Ok(serde_json::from_str(s)?)
}
}