@leynier/ccst 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,23 @@
1
1
  {
2
2
  "name": "@leynier/ccst",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
+ "description": "Claude Code Switch Tools for managing contexts",
5
+ "keywords": [
6
+ "claude",
7
+ "claude-code",
8
+ "cli",
9
+ "contexts",
10
+ "config",
11
+ "switcher"
12
+ ],
13
+ "homepage": "https://github.com/leynier/ccst",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/leynier/ccst.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/leynier/ccst/issues"
20
+ },
4
21
  "module": "index.ts",
5
22
  "type": "module",
6
23
  "bin": {
@@ -22,6 +39,17 @@
22
39
  "peerDependencies": {
23
40
  "typescript": "^5"
24
41
  },
42
+ "files": [
43
+ "src",
44
+ "index.ts",
45
+ "readme.md",
46
+ "LICENSE",
47
+ "AGENTS.md",
48
+ "CLAUDE.md",
49
+ "GEMINI.md",
50
+ "biome.json",
51
+ "tsconfig.json"
52
+ ],
25
53
  "publishConfig": {
26
54
  "access": "public"
27
55
  }
@@ -1,9 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(bun install:*)",
5
- "Bash(bun test:*)",
6
- "Bash(bun run:*)"
7
- ]
8
- }
9
- }
@@ -1,32 +0,0 @@
1
- name: publish
2
-
3
- on:
4
- release:
5
- types: [published]
6
- workflow_dispatch:
7
-
8
- permissions:
9
- contents: read
10
-
11
- jobs:
12
- publish:
13
- runs-on: ubuntu-latest
14
- steps:
15
- - name: Checkout
16
- uses: actions/checkout@v4
17
-
18
- - name: Setup Bun
19
- uses: oven-sh/setup-bun@v1
20
- with:
21
- bun-version: latest
22
-
23
- - name: Install dependencies
24
- run: bun install
25
-
26
- - name: Configure npm auth
27
- env:
28
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
29
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
30
-
31
- - name: Publish
32
- run: bun publish