-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
{
"name": "morphcloud",
"version": "0.0.20",
"description": "A Typescript SDK for creating, managing, and interacting with Morph Cloud VMs.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:integration": "jest test/integration",
"test:ssh": "jest test/integration/sshkeyrotation.test.ts",
"test:cjs": "node test/test-cjs.cjs",
"test:esm": "node test/test-esm.js",
"test:bun": "bun test/test-bun.ts",
"test:bunts": "bun test/test-bunts.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morph-labs/morph-typescript-sdk.git"
},
"author": "Morph",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/morph-labs/morph-typescript-sdk/issues"
},
"homepage": "https://github.com/morph-labs/morph-typescript-sdk#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"@types/ssh2": "^1.15.1",
"@types/uuid": "^10.0.0",
"jest": "^30.0.3",
"ts-jest": "^29.4.0",
"tsup": "^8.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"ignore": "^7.0.0",
"node-ssh": "^13.2.0",
"undici": "^7.12.0",
"uuid": "^11.1.0"
}
}