-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 875 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 875 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
37
38
39
40
41
{
"name": "jfrog-workers",
"version": "0.8.0",
"description": "JFrog workers interfaces",
"homepage": "https://github.com/jfrog/workers-sample",
"contributors": [
{
"name": "HERVE ESTEGUET",
"githubUsername": "ehl-jf",
"url": "https://github.com/ehl-jf"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"author": "JFrog",
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfrog/workers-sample.git"
},
"dependencies": {
"axios": "1.13.6"
},
"devDependencies": {
"typescript": "^5.9.3"
}
}