-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 KB
/
package.json
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
{
"name": "sidestore-source-types",
"description": "Fully documented type definitions for SideStore sources",
"version": "1.0.2",
"types": "./types/index.d.ts",
"files": [
"types/"
],
"license": "MIT",
"author": {
"name": "naturecodevoid",
"url": "https://naturecodevoid.dev/"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/sidestore"
},
"homepage": "https://sidestore.io/sidestore-source-types",
"repository": "github:SideStore/sidestore-source-types",
"bugs": {
"url": "https://github.com/SideStore/sidestore-source-types/issues"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"prettier": "^2.8.2",
"ts-json-schema-generator": "^1.2.0",
"typedoc": "^0.23.24"
},
"scripts": {
"build": "ts-json-schema-generator -p './types/source.d.ts' -o schema.json && typedoc types/index.d.ts --gitRevision main",
"format": "prettier --plugin @trivago/prettier-plugin-sort-imports --config ~/.prettierrc.json ./types ./test --write"
}
}