Skip to content

Commit d6ef54c

Browse files
Update package build details
1 parent 7f7ff94 commit d6ef54c

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

.npmignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Source files
2+
src/
3+
tests/
4+
artifacts/
5+
6+
# Config files
7+
.github/
8+
.vscode/
9+
.gitignore
10+
.npmrc
11+
tsconfig.json
12+
jest.config.js
13+
14+
# Test files
15+
**/test/
16+
**/tests/
17+
**/*.test.ts
18+
**/*.spec.ts
19+
20+
# Miscellaneous
21+
.DS_Store
22+
*.log
23+
node_modules/
24+
coverage/
25+
tmp/
26+
temp/
27+
.cursor/
28+
.specstory/
29+
repomix-output.txt

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 kazuph
3+
Copyright (c) 2025 Christopher C. Smith
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,13 @@ The system persists this structure to the JSON file after each operation.
6565
## Installation
6666

6767
```bash
68-
npm install
69-
npm run build
68+
npm install @chriscarrollsmith/mcp-taskmanager
69+
```
70+
71+
You can also install globally:
72+
73+
```bash
74+
npm install -g @chriscarrollsmith/mcp-taskmanager
7075
```
7176

7277
## Usage

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "mcp-taskmanager",
2+
"name": "@chriscarrollsmith/mcp-taskmanager",
33
"version": "1.0.0",
44
"description": "Task Manager MCP Server",
55
"author": "Christopher C. Smith ([email protected])",
@@ -10,7 +10,10 @@
1010
"task-manager-cli": "dist/cli.js"
1111
},
1212
"files": [
13-
"dist"
13+
"dist/index.js",
14+
"dist/src/**/*.js",
15+
"dist/src/**/*.d.ts",
16+
"dist/src/**/*.js.map"
1417
],
1518
"scripts": {
1619
"build": "tsc",

0 commit comments

Comments
 (0)