-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.69 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.69 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
{
"name": "time-played",
"displayName": "Time Played",
"author": "Xwilarg",
"version": "1.2.0",
"launcherVersion": "9.0.0",
"description": "Display how much time you spent on a game",
"contributes": {
"configuration": [
{
"title": "Time Played",
"properties": {
"com.time-played.allow-multiple-game-instance": {
"title": "Allow multiple game instances",
"type": "boolean",
"default": false,
"description": "If unticked, when starting 2 games only the time of the latest started will be counted"
},
"com.time-played.create-playlist": {
"title": "Create a playlist with your most played game",
"type": "boolean",
"default": true,
"description": "If ticked, the extension will create a playlist with your most played games inside"
},
"com.time-played.show-extreme-in-playlist": {
"title": "Display extreme games in playlist",
"type": "boolean",
"default": true,
"description": "Will extreme games be displayed in your \"Most Played\" playlist"
}
}
}
]
},
"main": "./dist/ext.js",
"devDependencies": {
"typescript": "^4.2.3"
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"@types/flashpoint-launcher": "^9.1.0",
"@types/node": "^14.14.37"
}
}