forked from neurosity/plugin-vscode-notion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.42 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
{
"name": "plugin-vscode-notion",
"displayName": "Notion Developer Assistant",
"version": "1.4.1",
"description": "Notion VS Code Plugin",
"main": "./build/extension.js",
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"contributes": {
"configuration": {
"title": "Notion",
"properties": {
"notion.email": {
"type": "string",
"format": "email",
"default": "",
"description": "Your console.neurosity.co email address."
},
"notion.deviceId": {
"type": "string",
"default": "",
"description": "Your unique Notion Device ID."
},
"notion.dimScreen": {
"type": "boolean",
"default": false,
"description": "Dim screen for a second when loosing focus. Only works on macOS - see issue #13."
},
"notion.doNotDisturb": {
"type": "boolean",
"default": false,
"description": "Activate Do Not Disturb when mind pace is high. Only works on macOS - see issue #8."
},
"notion.showDistractedNotification": {
"type": "boolean",
"default": false,
"description": "Display notification on screen for a second when loosing focus."
}
}
}
},
"icon": "images/neurosityLogo.png",
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/neurosity/plugin-vscode-notion.git"
},
"keywords": [
"notion",
"vscode"
],
"author": "Alex Castillo and AJ Keller",
"license": "MIT",
"bugs": {
"url": "https://github.com/neurosity/plugin-vscode-notion/issues"
},
"homepage": "https://github.com/neurosity/plugin-vscode-notion#readme",
"devDependencies": {
"@types/vscode": "^1.38.0",
"typescript": "^3.6.3"
},
"engines": {
"vscode": "^1.38.0"
},
"publisher": "neurosity",
"dependencies": {
"@neurosity/notion": "^4.2.5",
"@sindresorhus/do-not-disturb": "^1.1.0",
"@types/regression": "^2.0.0",
"@types/universal-analytics": "^0.4.3",
"datadog-metrics": "^0.8.1",
"electron-google-analytics": "^0.1.0",
"frappe-charts": "^1.3.0",
"hot-shots": "^6.8.1",
"moment": "^2.24.0",
"osx-brightness": "^4.0.0",
"regression": "^2.0.1",
"rxjs": "^6.5.3",
"universal-analytics": "^0.4.20"
}
}