-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 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
{
"name": "plugin-rescope",
"version": "1.0.1",
"description": "Workarounds to rescope Claude Code plugins across projects",
"type": "module",
"bin": {
"plugin-rescope": "bin/plugin-rescope.js"
},
"scripts": {
"build": "node esbuild.config.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit -p tsconfig.check.json",
"test": "vitest run"
},
"author": "Erdem Bircan <erdem.erdembircan@gmail.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"build/",
"LICENSE"
],
"imports": {
"#core/*": "./src/core/*",
"#util/*": "./src/util/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erdembircan/plugin-rescope.git"
},
"bugs": {
"url": "https://github.com/erdembircan/plugin-rescope/issues"
},
"homepage": "https://github.com/erdembircan/plugin-rescope#readme",
"keywords": [
"claude",
"plugin",
"rescope"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"esbuild": "^0.25.4",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"overrides": {
"minimatch": "^10.2.4"
},
"dependencies": {
"picocolors": "^1.1.1"
}
}