-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.8 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
72
{
"name": "vsix-bridge-cli",
"version": "0.2.0",
"description": "Sync VS Code extensions to fork IDEs (Cursor, Antigravity, Windsurf)",
"keywords": [
"vscode",
"vsix",
"cursor",
"windsurf",
"extensions"
],
"homepage": "https://github.com/hashintel/labs/tree/main/apps/vsix-bridge-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/hashintel/labs",
"directory": "apps/vsix-bridge-cli"
},
"license": "(MIT OR Apache-2.0)",
"author": {
"name": "Lu Nelson"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"vsix-bridge": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepack": "RELEASE=true npm run build",
"prepublishOnly": "npm run test",
"release": "release-it",
"release:ci": "release-it --ci",
"release:dry": "release-it --dry-run --no-github.release",
"start": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"picocolors": "^1.1.1",
"semver": "^7.7.4",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.3.0",
"@types/semver": "^7.7.1",
"@types/update-notifier": "^6.0.8",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.0",
"release-it": "17.0.0",
"tsup": "^8.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=18"
}
}