-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.82 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
{
"name": "@jl-org/ai-sync",
"version": "1.0.9",
"description": "Migrate Commands, Skills, Instructions, MCP across Cursor, Claude Code, OpenCode, Codex, and other AI CLI tools. 在 Cursor、Claude Code、OpenCode、Codex 等工具中迁移 Commands、Skills、Instructions、MCP...",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"bin": {
"ai-sync": "./dist/cli.js"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"help": "tsx src/index.ts --help",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "eslint . --fix --quiet",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run tests/lib/integration.test.ts"
},
"keywords": [
"ai-sync",
"ide-config",
"migration"
],
"author": "CJL <2662442385@qq.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/beixiyo/ai-sync",
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^5.6.2",
"comment-json": "^5.0.0",
"inquirer": "^13.2.0",
"ora": "^9.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@jl-org/eslint-plugins": "^1.0.0",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"eslint": "^9.37.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}