mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
11 lines
297 B
JavaScript
11 lines
297 B
JavaScript
const { createInstallTargetAdapter } = require('./helpers');
|
|
|
|
module.exports = createInstallTargetAdapter({
|
|
id: 'cursor-project',
|
|
target: 'cursor',
|
|
kind: 'project',
|
|
rootSegments: ['.cursor'],
|
|
installStatePathSegments: ['ecc-install-state.json'],
|
|
nativeRootRelativePath: '.cursor',
|
|
});
|