Merge pull request #1162 from paperclipai/fix/npm-provenance-package-metadata

fix: add npm provenance package metadata
This commit is contained in:
Dotta
2026-03-17 16:02:36 -05:00
committed by GitHub
15 changed files with 135 additions and 1 deletions

View File

@@ -16,10 +16,13 @@
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/paperclipai/paperclip.git", "url": "https://github.com/paperclipai/paperclip",
"directory": "cli" "directory": "cli"
}, },
"homepage": "https://github.com/paperclipai/paperclip", "homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"files": [ "files": [
"dist" "dist"
], ],

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-utils", "name": "@paperclipai/adapter-utils",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapter-utils"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-claude-local", "name": "@paperclipai/adapter-claude-local",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/claude-local"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-codex-local", "name": "@paperclipai/adapter-codex-local",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/codex-local"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-cursor-local", "name": "@paperclipai/adapter-cursor-local",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/cursor-local"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-gemini-local", "name": "@paperclipai/adapter-gemini-local",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/gemini-local"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-openclaw-gateway", "name": "@paperclipai/adapter-openclaw-gateway",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/openclaw-gateway"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-opencode-local", "name": "@paperclipai/adapter-opencode-local",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/opencode-local"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/adapter-pi-local", "name": "@paperclipai/adapter-pi-local",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/adapters/pi-local"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/db", "name": "@paperclipai/db",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/db"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/create-paperclip-plugin", "name": "@paperclipai/create-paperclip-plugin",
"version": "0.1.0", "version": "0.1.0",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/plugins/create-paperclip-plugin"
},
"type": "module", "type": "module",
"bin": { "bin": {
"create-paperclip-plugin": "./dist/index.js" "create-paperclip-plugin": "./dist/index.js"

View File

@@ -2,6 +2,16 @@
"name": "@paperclipai/plugin-sdk", "name": "@paperclipai/plugin-sdk",
"version": "1.0.0", "version": "1.0.0",
"description": "Stable public API for Paperclip plugins — worker-side context and UI bridge hooks", "description": "Stable public API for Paperclip plugins — worker-side context and UI bridge hooks",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/plugins/sdk"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": { ".": {

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/shared", "name": "@paperclipai/shared",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "packages/shared"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts", ".": "./src/index.ts",

View File

@@ -94,6 +94,7 @@ const publishPkg = {
license: cliPkg.license, license: cliPkg.license,
repository: cliPkg.repository, repository: cliPkg.repository,
homepage: cliPkg.homepage, homepage: cliPkg.homepage,
bugs: cliPkg.bugs,
files: cliPkg.files, files: cliPkg.files,
engines: { node: ">=20" }, engines: { node: ">=20" },
dependencies: sortedDeps, dependencies: sortedDeps,

View File

@@ -1,6 +1,16 @@
{ {
"name": "@paperclipai/server", "name": "@paperclipai/server",
"version": "0.3.1", "version": "0.3.1",
"license": "MIT",
"homepage": "https://github.com/paperclipai/paperclip",
"bugs": {
"url": "https://github.com/paperclipai/paperclip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paperclipai/paperclip",
"directory": "server"
},
"type": "module", "type": "module",
"exports": { "exports": {
".": "./src/index.ts" ".": "./src/index.ts"