Files
today-income/package.json
2025-09-16 11:56:41 +08:00

66 lines
1.6 KiB
JSON

{
"name": "today-income",
"displayName": "Today Income",
"description": "Let's see how much money I made today.",
"version": "1.0.0",
"publisher": "yv1ing",
"repository": {
"type": "git",
"url": "https://github.com/yv1ing/today-income.git"
},
"bugs": {
"url": "https://github.com/yv1ing/today-income/issues"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"icon": "icon.png",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Today Income",
"properties": {
"todayIncome.monthlyIncome": {
"type": "number",
"default": 10000,
"description": "Enter your monthly income"
},
"todayIncome.currencyUnit": {
"type": "string",
"default": "¥",
"description": "Currency unit for income display"
},
"todayIncome.workDays": {
"type": "number",
"default": 22,
"description": "Enter the number of working days in the month"
},
"todayIncome.workStartTime": {
"type": "string",
"default": "09:00",
"description": "Enter the start time for work in HH:mm format"
},
"todayIncome.workEndTime": {
"type": "string",
"default": "18:00",
"description": "Enter the end time for work in HH:mm format"
}
}
}
},
"devDependencies": {
"typescript": "^5.9.2",
"vscode": "^1.1.37"
}
}