-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.73 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
{
"name": "@lucassantana/sharekit",
"version": "0.6.0",
"description": "Share your AI coding setup with anyone — one command to install, one to rollback.",
"keywords": [
"ai",
"claude",
"cursor",
"copilot",
"dotfiles",
"cli",
"config"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"sharekit": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && chmod +x dist/index.js",
"build:binaries": "mkdir -p dist && bun build --compile --target=bun-linux-x64 src/index.ts --outfile=dist/sharekit-linux-x64 && bun build --compile --target=bun-linux-arm64 src/index.ts --outfile=dist/sharekit-linux-arm64 && bun build --compile --target=bun-darwin-x64 src/index.ts --outfile=dist/sharekit-macos-x64 && bun build --compile --target=bun-darwin-arm64 src/index.ts --outfile=dist/sharekit-macos-arm64 && bun build --compile --target=bun-windows-x64 src/index.ts --outfile=dist/sharekit-windows-x64.exe",
"dev": "tsx src/index.ts",
"test": "node --import tsx --test test/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.mjs\"",
"bump": "node scripts/bump-version.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"kleur": "^4.1.5",
"smol-toml": "^1.7.0"
},
"devDependencies": {
"@types/node": "^26.0.1",
"prettier": "^3.3.0",
"tsx": "^4.19.0",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasSantana-Dev/sharekit.git"
}
}