-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.48 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@gleanwork/pluginpack",
"version": "0.1.0",
"description": "Compile one source of agent plugins — skills, commands, hooks, and MCP servers — into the native plugin format each AI app expects.",
"keywords": [
"agent-skills",
"ai-agents",
"claude-code",
"cursor",
"plugins",
"skills",
"pluginpack",
"gemini",
"copilot",
"mcp"
],
"homepage": "https://github.com/gleanwork/pluginpack#readme",
"bugs": {
"url": "https://github.com/gleanwork/pluginpack/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gleanwork/pluginpack.git"
},
"license": "MIT",
"author": {
"name": "Glean",
"email": "support@glean.com",
"url": "https://glean.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"pluginpack": "dist/cli.js"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"check": "npm run test:all",
"dev": "tsx src/cli.ts",
"docs": "node dist/cli.js docs --check",
"format": "prettier --write \"**/*.{ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,json,md,yml,yaml}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run check && npm pack --dry-run",
"release": "release-it",
"test": "vitest run",
"test:all": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build && npm run docs",
"typecheck": "tsc --noEmit",
"pretest": "npm run build"
},
"dependencies": {
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"jiti": "^2.7.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.10.1",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"bintastic": "^4.0.2",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"release-it": "^20.0.1",
"sort-package-json": "^3.6.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"release-it": {
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"publish": true
}
}
}