From 86b8a25d2c4b3bea33439711ded7a480eac7bef3 Mon Sep 17 00:00:00 2001 From: Federico Jaramillo Martinez Date: Fri, 8 May 2026 11:41:14 +0200 Subject: [PATCH] Add MIT license --- LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ package-lock.json | 1 + package.json | 2 +- 4 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..26db08d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Federico Jaramillo Martinez + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index f90833b..a913d6d 100644 --- a/README.md +++ b/README.md @@ -208,3 +208,7 @@ Pi Web is the beginning of an agent-first development environment: - the UI grows around the needs of agentic development rather than the habits of local IDEs. The goal is simple: make it practical to run more development remotely, in parallel, with agents as first-class participants and humans focused on direction, judgment, and review. + +## License + +MIT © 2026 Federico Jaramillo Martinez. See [LICENSE](LICENSE). diff --git a/package-lock.json b/package-lock.json index 3afd998..f2dd261 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "pi-web-poc", "version": "0.0.1", + "license": "MIT", "dependencies": { "@codemirror/lang-css": "^6.3.1", "@codemirror/lang-go": "^6.0.1", diff --git a/package.json b/package.json index e50821c..54a59aa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pi-web-poc", "version": "0.0.1", - "private": true, + "license": "MIT", "type": "module", "scripts": { "dev": "bash -c 'trap \"kill 0\" EXIT; npm run dev:sessiond & npm run dev:web & npm run dev:client & wait'",