mirror of
https://github.com/sern-handler/cli
synced 2026-06-08 17:02:27 +00:00
15 lines
579 B
Go
15 lines
579 B
Go
package initialize
|
|
|
|
type PackageJSON struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
Description string `json:"description"`
|
|
Main string `json:"main"`
|
|
Scripts map[string]string `json:"scripts"`
|
|
Keywords []string `json:"keywords"`
|
|
Author string `json:"author"`
|
|
License string `json:"license"`
|
|
Dependencies map[string]string `json:"dependencies"`
|
|
DevDependencies map[string]string `json:"devDependencies"`
|
|
}
|