-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.1 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
{
"name": "fasterizy",
"version": "1.0.3",
"description": "Faster work with coding agents",
"main": "cli.js",
"bin": {
"fasterizy": "./cli.js",
"izy": "./cli.js"
},
"files": [
"cli.js",
"cli/",
"hooks/",
"scripts/",
"SKILL.md",
"skills/",
".claude-plugin/",
".codex-plugin/",
".agents/",
"README.md",
"LICENSE",
"ROADMAP.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build:skill": "node scripts/embed-skill.js",
"sync:skills-dir": "node scripts/sync-skills-dir.js",
"prepublishOnly": "npm run build:skill && npm run sync:skills-dir"
},
"keywords": [
"coding-agent",
"claude-code",
"codex",
"cursor",
"skills"
],
"author": "felipeinf (https://github.com/felipeinf)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/felipeinf/fasterizy.git"
},
"bugs": {
"url": "https://github.com/felipeinf/fasterizy/issues"
},
"homepage": "https://www.npmjs.com/package/fasterizy",
"type": "commonjs",
"dependencies": {
"@inquirer/prompts": "^7.10.1"
}
}