Skip to content

Commit 9e49b07

Browse files
committed
Add sandbox support
1 parent 4529f5b commit 9e49b07

9 files changed

Lines changed: 2472 additions & 721 deletions

File tree

package.json

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
{
2-
"name": "polar-cli",
3-
"version": "1.2.0",
4-
"description": "",
5-
"bin": "bin/cli.js",
6-
"type": "module",
7-
"scripts": {
8-
"build": "tsup ./src/cli.ts --format esm --outDir bin",
9-
"dev": "tsc --watch",
10-
"test": "echo \"Error: no test specified\" && exit 1",
11-
"check": "biome check --write ./src",
12-
"build:binary": "bun build ./src/cli.ts --compile --outfile polar",
13-
"build:binary:darwin-arm64": "bun build ./src/cli.ts --compile --target=bun-darwin-arm64 --outfile polar",
14-
"build:binary:darwin-x64": "bun build ./src/cli.ts --compile --target=bun-darwin-x64 --outfile polar",
15-
"build:binary:linux-x64": "bun build ./src/cli.ts --compile --target=bun-linux-x64 --outfile polar"
16-
},
17-
"files": [
18-
"bin",
19-
"dist"
20-
],
21-
"keywords": [],
22-
"author": "",
23-
"license": "Apache-2.0",
24-
"packageManager": "[email protected]",
25-
"dependencies": {
26-
"@effect/cli": "^0.69.0",
27-
"@effect/platform": "^0.90.2",
28-
"@effect/platform-bun": "^0.87.1",
29-
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
30-
"@polar-sh/sdk": "^0.34.11",
31-
"effect": "^3.17.7",
32-
"eventsource": "^4.1.0",
33-
"open": "^10.2.0"
34-
},
35-
"devDependencies": {
36-
"@biomejs/biome": "^2.1.4",
37-
"@effect/language-service": "^0.35.2",
38-
"@sindresorhus/tsconfig": "^8.0.1",
39-
"@types/node": "^24.2.1",
40-
"tsup": "^8.5.0",
41-
"typescript": "^5.9.2"
42-
}
2+
"name": "polar-cli",
3+
"version": "1.3.0",
4+
"description": "",
5+
"bin": "bin/cli.js",
6+
"type": "module",
7+
"scripts": {
8+
"build": "tsup ./src/cli.ts --format esm --outDir bin",
9+
"dev": "tsc --watch",
10+
"test": "echo \"Error: no test specified\" && exit 1",
11+
"check": "biome check --write ./src",
12+
"build:binary": "bun build ./src/cli.ts --compile --outfile polar",
13+
"build:binary:darwin-arm64": "bun build ./src/cli.ts --compile --target=bun-darwin-arm64 --outfile polar",
14+
"build:binary:darwin-x64": "bun build ./src/cli.ts --compile --target=bun-darwin-x64 --outfile polar",
15+
"build:binary:linux-x64": "bun build ./src/cli.ts --compile --target=bun-linux-x64 --outfile polar"
16+
},
17+
"files": [
18+
"bin",
19+
"dist"
20+
],
21+
"keywords": [],
22+
"author": "",
23+
"license": "Apache-2.0",
24+
"packageManager": "[email protected]",
25+
"dependencies": {
26+
"@effect/cli": "^0.69.0",
27+
"@effect/platform": "^0.90.2",
28+
"@effect/platform-bun": "^0.87.1",
29+
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
30+
"@polar-sh/sdk": "^0.43.1",
31+
"effect": "^3.17.7",
32+
"eventsource": "^4.1.0",
33+
"open": "^10.2.0"
34+
},
35+
"devDependencies": {
36+
"@biomejs/biome": "^2.1.4",
37+
"@effect/language-service": "^0.35.2",
38+
"@sindresorhus/tsconfig": "^8.0.1",
39+
"@types/node": "^24.2.1",
40+
"tsup": "^8.5.0",
41+
"typescript": "^5.9.2"
42+
}
4343
}

0 commit comments

Comments
 (0)