-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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
59
60
61
{
"name": "@beamcloud/beam-js",
"version": "1.0.0-rc.25",
"description": "Javascript SDK to interact with Beam",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"import": "./dist/*.mjs",
"require": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/beam-cloud/beam-js.git"
},
"author": "John <john@slai.io>",
"license": "MIT",
"scripts": {
"prebuild": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc-multi && node ./scripts/make-dist-package-json.cjs > dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"test": "jest"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.7.7",
"commander": "^12.1.0",
"ignore": "^7.0.5",
"strip-ansi": "^7.1.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/archiver": "^6.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^22.8.4",
"@types/ws": "^8.18.1",
"bun-types": "latest",
"jest": "^30.1.3",
"ts-node": "^10.9.2",
"tsc-multi": "^1.1.0",
"tsx": "^4.20.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": [
"dist/**",
"README.md",
"LICENSE"
]
}