-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 993 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 993 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
{
"name": "@userclouds/sdk-typescript",
"version": "1.0.16",
"description": "Typescript SDK for UserClouds",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint --max-warnings=0 src/ samples/",
"lintfix": "eslint --max-warnings=0 --fix --quiet src/ samples/",
"format": "yarn run prettier . --write"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/userclouds/sdk-typescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/userclouds/sdk-typescript/issues"
},
"homepage": "https://github.com/userclouds/sdk-typescript#readme",
"dependencies": {
"dotenv": "^16.4.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^9.23.0",
"prettier": "^3.3.3",
"prettier-plugin-gherkin": "^3.1.2",
"typescript": "^5.2.2"
},
"files": [
"lib/**/*"
]
}