uasp-skills 0.1.1 → 0.1.3

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/dist/cli/index.js CHANGED
@@ -14,7 +14,7 @@ const program = new Command();
14
14
  program
15
15
  .name('skills')
16
16
  .description('CLI tool for managing UASP agent skills')
17
- .version('0.1.0');
17
+ .version('0.1.3');
18
18
  // Add commands
19
19
  program.addCommand(addCommand);
20
20
  program.addCommand(listCommand);
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "uasp-skills",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "CLI tool for managing UASP agent skills",
5
5
  "type": "module",
6
6
  "bin": {
7
- "skills": "./bin/skills.js"
7
+ "uasp-skills": "./bin/uasp-skills.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "types": "./dist/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "scripts": {
16
16
  "build": "tsc",
17
17
  "dev": "tsc --watch",
18
- "start": "node bin/skills.js",
18
+ "start": "node bin/uasp-skills.js",
19
19
  "lint": "eslint src",
20
20
  "test": "vitest",
21
21
  "prepublishOnly": "npm run build"
File without changes