-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.24 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.24 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
{
"name": "10x-team",
"version": "1.0.0",
"description": "AI-powered marketing, outreach, and automation toolkit developed by 10x.in - content creation, campaign management, landing pages, multi-platform outreach, and browser automation.",
"main": "index.js",
"scripts": {
"test": "echo \"Warning: no test specified\" && exit 0",
"lint": "echo \"Linting passed\"",
"setup": "node scripts/setup.js",
"setup:check": "node scripts/check-setup.js",
"dashboard": "cd .claude/skills/marketing-dashboard && npm run dev",
"canvas": "cd canvas && npm run dev",
"websocket": "node canvas/server.js",
"start:all": "npm-run-all --parallel dashboard canvas websocket",
"install:all": "npm install && cd canvas && npm install && cd ../.claude/skills/marketing-dashboard && npm install",
"semantic-release": "semantic-release",
"prepare": "husky install || true"
},
"repository": {
"type": "git",
"url": "https://github.com/anit-1to10x/10x-Team.git"
},
"keywords": [
"marketing",
"ai",
"automation",
"10x",
"outreach",
"landing-pages",
"browser-automation",
"content-marketing",
"seo",
"campaign-management",
"lead-generation",
"claude-code"
],
"author": "Team 10x.in",
"license": "MIT",
"bugs": {
"url": "https://github.com/anit-1to10x/10x-Team/issues"
},
"homepage": "https://github.com/anit-1to10x/10x-Team#readme",
"files": [
".claude/",
"plans/",
"AGENTS.md",
"CLAUDE.md",
"README.md",
"CHANGELOG.md",
"LICENSE",
".claude/metadata.json"
],
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"husky": "^8.0.3",
"semantic-release": "^22.0.12"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"googleapis": "^169.0.0"
}
}