-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.07 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.07 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
105
{
"name": "create-claude",
"version": "0.1.13",
"description": "Claude Code setup that just works. Bootstrap every project with agents, hooks, commands, and smart permissions. One command, zero headaches.",
"type": "module",
"sideEffects": false,
"private": false,
"packageManager": "npm@11.6.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cli": "./dist/cli.js"
},
"bin": {
"create-claude": "dist/cli.js",
"cld": "dist/cli.js"
},
"files": [
"dist",
"skel",
"README.md",
"LICENSE",
"DISCLAIMER.md",
"CHANGELOG.md",
"SECURITY.md",
"CITATION.cff"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/RMNCLDYO"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"scripts": {
"build": "npm run clean:dist && tsc",
"build:watch": "tsc --watch",
"dev": "npm run build && node dist/cli.js",
"start": "node dist/cli.js",
"test": "npm run build && npm run test:integration",
"test:integration": "node test/integration.cjs",
"clean": "node -e \"const fs=require('fs'); ['dist','node_modules','package-lock.json'].forEach(d=>fs.rmSync(d,{recursive:true,force:true}));\"",
"clean:dist": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"validate": "npm run typecheck && npm run lint",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit --strict",
"releaseCheck": "echo 'Running release validation (dry-run)...' && npm run clean && npm install && npm run validate && npm run build && npm test && echo 'All release checks passed! Ready for version bump.'",
"prepack": "npm run validate && npm run test",
"prepublishOnly": "npm run validate && npm run test",
"postpack": "echo 'Package created successfully'",
"version": "echo 'Starting version preparation...' && npm run clean && npm install && npm run validate && npm run build && npm test && echo '⚠️ REMINDER: Update CHANGELOG.md with changes for this version!' && git add -A && echo 'Version preparation complete - files staged for commit'"
},
"keywords": [
"claude",
"claude-code",
"cli",
"setup",
"template",
"scaffolding",
"ai",
"productivity",
"automation",
"agents",
"hooks",
"config",
"zero-config",
"developer-tools"
],
"author": "RMNCLDYO <hi@rmncldyo.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RMNCLDYO/create-claude.git"
},
"bugs": {
"url": "https://github.com/RMNCLDYO/create-claude/issues"
},
"homepage": "https://github.com/RMNCLDYO/create-claude#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"preferGlobal": false,
"stability": "stable",
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
}
}