-
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) · 908 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 908 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
{
"type": "module",
"name": "@crystallizeapi/github-profile-generator",
"version": "0.0.1",
"main": "./build/index.js",
"exports": "./build/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"generate": "node build/index.js",
"watch": "yarn tsc -W",
"build": "tsc",
"bump": "yarn tsc && yarn version --new-version"
},
"bin": {
"github-profile-generator": "./build/index.js"
},
"dependencies": {
"@crystallize/js-api-client": "*",
"meow": "^10.1.2",
"mustache": "^4.2.0",
"node-fetch": "^3.2.3"
},
"volta": {
"node": "16.14.2",
"yarn": "1.22.18"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/mustache": "^4.1.2",
"@types/node": "^17.0.21",
"typescript": "^4.6.2"
},
"license": "MIT"
}