-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 942 Bytes
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
{
"name": "@jgengine/github",
"version": "0.5.0",
"description": "GitHub data source for JGengine: contribution calendar fetch (GraphQL + HTML-scrape) with a server proxy handler, plus a browser client and contribution analytics.",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Noisemaker111/jgengine.git",
"directory": "packages/github"
},
"files": [
"dist",
"CHANGELOG.md",
"skills"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
"build": "tsgo -p tsconfig.build.json && bun ../../scripts/fix-extensions.ts dist",
"check-types": "tsgo --noEmit -p tsconfig.json",
"test": "bun test src"
},
"publishConfig": {
"access": "public"
}
}