-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "remove-ai-writing-indicators",
"version": "1.2.0",
"description": "Find and remove the patterns that make writing read as machine-produced, without flattening the writer's voice. Four modes, ordered by how much of the final text stays yours.",
"keywords": [
"pi-package",
"writing",
"editing",
"voice",
"skill"
],
"homepage": "https://github.com/nickali/remove-ai-writing-indicators",
"repository": {
"type": "git",
"url": "git+https://github.com/nickali/remove-ai-writing-indicators.git"
},
"bugs": {
"url": "https://github.com/nickali/remove-ai-writing-indicators/issues"
},
"license": "MIT",
"author": {
"name": "Nick Ali",
"url": "https://github.com/nickali"
},
"scripts": {
"test": "cd tests && python3 -m unittest discover -v",
"version": "node -e \"const fs=require('fs'),f='.claude-plugin/plugin.json',j=JSON.parse(fs.readFileSync(f));j.version=JSON.parse(fs.readFileSync('package.json')).version;fs.writeFileSync(f,JSON.stringify(j,null,2)+'\\n')\" && git add .claude-plugin/plugin.json"
},
"pi": {
"skills": [
"./skills"
]
},
"files": [
"skills/",
"examples/",
"README.md",
"LICENSE"
]
}