-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.26 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@browserbasehq/sdk-functions",
"version": "1.0.1",
"description": "",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"bb": "dist/cli.js"
},
"files": [
"dist"
],
"sideEffects": [
"./dist/index.js"
],
"scripts": {
"build": "rm -rf dist && tsup",
"build:tests": "tsc --project tsconfig.test.json",
"eslint": "eslint ./src",
"eslint:fix": "eslint --fix ./src",
"lint": "$npm_execpath run eslint && $npm_execpath run prettier && $npm_execpath run typecheck",
"prettier": "prettier . --check --cache",
"prettier:fix": "prettier . --write --cache",
"test": "$npm_execpath build:tests && node --test dist-test/**/*.test.js",
"test:only": "$npm_execpath build:tests && node --test-only --test dist-test/**/*.test.js",
"build:integration": "tsc --project tsconfig.integration.json",
"pretest:integration": "$npm_execpath run build && pnpm pack",
"test:integration": "$npm_execpath run build:integration && node --test --test-timeout 120000 dist-integration-test/tests/integration/**/*.test.js",
"posttest:integration": "rm -f browserbasehq-sdk-functions-*.tgz",
"pretest:e2e": "$npm_execpath run build && pnpm pack",
"test:e2e": "$npm_execpath run build:integration && node --test --test-timeout 300000 dist-integration-test/tests/e2e/**/*.test.js",
"posttest:e2e": "rm -f browserbasehq-sdk-functions-*.tgz",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.12.1",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/archiver": "^7.0.0",
"@types/node": "^24.3.1",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "3.6.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0"
},
"dependencies": {
"@browserbasehq/sdk": "^2.6.0",
"archiver": "^7.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"tsx": "^4.20.5",
"zod": "^4.1.5"
}
}