-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
42
43
44
45
46
47
48
49
{
"name": "puter-sdk",
"version": "1.5.0",
"type": "module",
"description": "The Unofficial Puter SDK library for Puter cloud platform",
"main": "src/index.js",
"scripts": {
"build": "vitest src/**",
"test:dev": "PUTER_API_KEY='' vitest tests/*",
"test": "PUTER_API_KEY='' vitest run tests/**/*.test.js",
"test:integration": "vitest run --config vitest.integration.config.js",
"test:mock": "vitest run --config vitest.integration.config.js",
"test:all": "PUTER_API_KEY='' vitest run tests/*",
"coverage": "PUTER_API_KEY='' vitest run --coverage",
"docs": "jsdoc -c jsdoc.json",
"docs:dev": "pnpm run docs && open docs/index.html"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"puter",
"sdk",
"cloud"
],
"author": "Ibrahim.H",
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"uuid": "^11.0.5"
},
"devDependencies": {
"@vitest/coverage-v8": "3.0.4",
"@vitest/runner": "^3.0.5",
"axios-mock-adapter": "^2.1.0",
"clean-jsdoc-theme": "^4.3.0",
"jsdoc": "^4.0.4",
"vitest": "^3.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitsnaps/puter-sdk.git"
},
"bugs": {
"url": "https://github.com/bitsnaps/puter-sdk/issues"
},
"homepage": "https://github.com/bitsnaps/puter-sdk"
}