-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "arcus",
"displayName": "Arcus",
"description": "Capture Cursor session context for Arcus — SSO auth, project pinning, ticket mapping.",
"version": "1.0.1",
"publisher": "testsigma",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/testsigmahq/arcus-cursor-extension"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Testing",
"Other"
],
"icon": "assets/icon.png",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "arcus.signIn",
"title": "Arcus: Sign In"
},
{
"command": "arcus.signOut",
"title": "Arcus: Sign Out"
}
],
"configuration": {
"title": "Arcus",
"properties": {
"arcus.serverUrl": {
"type": "string",
"default": "https://arcus.testsigma.com",
"description": "Arcus agentic/auth server URL (browser sign-in, token exchange & refresh)"
},
"arcus.apiServerUrl": {
"type": "string",
"default": "https://agentic-test.testsigma.com",
"description": "Arcus API server URL (receives hook/context events)"
},
"arcus.eventsPath": {
"type": "string",
"default": "/api/v1/plugin/events",
"description": "Path on the API server that accepts hook events"
},
"arcus.logLevel": {
"type": "string",
"enum": [
"off",
"error",
"info",
"debug"
],
"default": "info",
"description": "Extension log level"
}
}
}
},
"scripts": {
"build": "node esbuild.js",
"build:prod": "NODE_ENV=production node esbuild.js",
"watch": "node esbuild.js --watch",
"package": "npm run build:prod && vsce package --no-dependencies",
"deploy": "npm version patch --no-git-tag-version && npm run package && cursor --install-extension arcus-$(node -p \"require('./package.json').version\").vsix",
"lint": "eslint src tests",
"test": "tsx --test 'tests/**/*.test.ts'",
"clean": "rm -rf dist *.vsix node_modules package-lock.json",
"startover": "npm run clean && npm install && npm run deploy",
"prepare": "git config core.hooksPath .githooks && chmod +x .githooks/*"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"tsx": "^4.19.0",
"typescript": "^5.3.0"
}
}