forked from Angels-Ray/fake-rosrus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 KB
/
package.json
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
{
"name": "fake-cursor",
"displayName": "fake-cursor",
"publisher": "fake-cursor",
"description": "A extension for regenerating Cursor device IDs",
"version": "0.0.4",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "fake-cursor.regenerateId",
"title": "Fake Cursor: Regenerate Device ID"
},
{
"command": "fake-cursor.setToken",
"title": "Fake Cursor: Regenerate & Set Token"
},
{
"command": "fake-cursor.readToken",
"title": "Fake Cursor: Read Token"
}
],
"configuration": {
"title": "Fake Cursor",
"properties": {
"fake-cursor.storagePath": {
"type": "string",
"default": "",
"markdownDescription": "自定义配置文件所在文件夹的路径。留空则使用默认路径:\n\n- Windows: `%APPDATA%/Cursor/User/globalStorage`\n- macOS: `~/Library/Application Support/Cursor/User/globalStorage`\n- Linux: `~/.config/Cursor/User/globalStorage`"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.80.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.16.0"
},
"dependencies": {
"sql.js": "^1.8.0",
"uuid": "^11.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Angels-Ray/fake-cursor.git"
},
"license": "CC-BY-NC-4.0"
}