{
"name": "pijul",
"displayName": "Pijul",
"description": "The Pijul version control system",
"version": "0.0.1",
"engines": {
"node": ">= 12.22.0 < 13 || >= 14.17.0 < 15 || >= 15.12.0 < 16 || >= 16.0.0",
"vscode": "^1.105.0"
},
"categories": [
"SCM Providers"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"colors": [
{
"id": "pijul.decorations.path.untracked",
"description": "Color of untracked paths in the file explorer",
"defaults": {
"light": "gitDecoration.untrackedResourceForeground",
"dark": "gitDecoration.untrackedResourceForeground"
}
},
{
"id": "pijul.decorations.path.added",
"description": "Color of added paths in the file explorer",
"defaults": {
"light": "gitDecoration.addedResourceForeground",
"dark": "gitDecoration.addedResourceForeground"
}
},
{
"id": "pijul.decorations.path.removed",
"description": "Color of removed paths in the file explorer",
"defaults": {
"light": "gitDecoration.deletedResourceForeground",
"dark": "gitDecoration.deletedResourceForeground"
}
},
{
"id": "pijul.decorations.path.modified",
"description": "Color of modified paths in the file explorer",
"defaults": {
"light": "gitDecoration.modifiedResourceForeground",
"dark": "gitDecoration.modifiedResourceForeground"
}
},
{
"id": "pijul.decorations.path.moved",
"description": "Color of moved paths in the file explorer",
"defaults": {
"light": "gitDecoration.renamedResourceForeground",
"dark": "gitDecoration.renamedResourceForeground"
}
},
{
"id": "pijul.decorations.path.modifiedAndMoved",
"description": "Color of paths that have been both modified and moved in the file explorer",
"defaults": {
"light": "gitDecoration.modifiedResourceForeground",
"dark": "gitDecoration.modifiedResourceForeground"
}
},
{
"id": "pijul.decorations.inlineCredit.foreground",
"description": "Color of inline credit annotations rendered beside text selections",
"defaults": {
"light": "git.blame.editorDecorationForeground",
"dark": "git.blame.editorDecorationForeground"
}
}
]
},
"napi": {
"binaryName": "pijul-vscode"
},
"devDependencies": {
"@napi-rs/cli": "^3.3.1",
"@types/node": "22.x",
"@types/vscode": "^1.105.0",
"typescript": "^5.9.3"
}
}