-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 869 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 869 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": "masscode-importer",
"version": "1.1.0",
"description": "Command-line tool designed to simplify the process of importing code snippets from your GitHub\nGists into [massCode]",
"main": "src/app.ts",
"keywords": [
"github",
"code",
"snippets"
],
"scripts": {
"start": "tsnd src/app.ts"
},
"author": "paulo.eli@outlook.com",
"private": true,
"license": "MIT",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^20.5.9",
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"fs": "^0.0.1-security",
"lodash": "^4.17.21",
"typescript": "^5.2.2",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/uuid": "^9.0.3",
"@types/lodash": "^4.14.187",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}