-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.64 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.64 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
{
"name": "proca",
"description": "Access the proca api",
"version": "2.5.1",
"author": "Xavier",
"bin": {
"proca": "proca-cli"
},
"bugs": "https://github.com/fixthestatusquo/git@github.com:fixthestatusquo/proca-cli.git/issues",
"dependencies": {
"@oclif/core": "^4.2.10",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"@urql/exchange-auth": "^2.2.0",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"dxid": "^2.2.1",
"easy-table": "^1.2.0",
"fast-csv": "^5.0.1",
"graphql": "^16.10.0",
"merge-anything": "^6.0.6",
"object-path": "^0.11.8",
"prompts": "^2.4.2",
"simple-git": "^3.33.0",
"typescript": "^5.7.3",
"urql": "^4.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@graphql-codegen/cli": "^2.x.x",
"@graphql-codegen/introspection": "^2.x.x",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@oclif/plugin-autocomplete": "^3.2.5",
"@oclif/plugin-commands": "^4.1.3",
"@oclif/plugin-not-found": "^3.2.22",
"lefthook": "^1.7.18",
"oclif": "^4.17.46"
},
"engines": {
"node": ">=18.0.0"
},
"files": ["/proca-cli", "/src", "/theme.json"],
"homepage": "https://github.com/fixthestatusquo/git@github.com:fixthestatusquo/proca-cli.git",
"keywords": [
"cli",
"petition",
"proca",
"campaigning",
"digital-engagement",
"social-change",
"nonprofit",
"civic-tech",
"mobilisation",
"advocacy",
"activism",
"email-campaign",
"grassroots",
"gdpr"
],
"imports": {
"#src/*": "./src/*"
},
"license": "aGPL3",
"main": "./proca-cli",
"oclif": {
"repository": "github:fixthestatusquo/proca-cli",
"bin": "proca",
"theme": "theme.json",
"topicSeparator": " ",
"commands": "./src/commands",
"helpClass": "./src/hooks/help.mjs",
"topics": {
"widget": {
"description": "widgets (actionPages in the API)"
},
"campaign": {
"description": "campaigns"
},
"user": {
"description": "campaigners and other users"
}
},
"plugins": [
"@oclif/plugin-plugins",
"@oclif/plugin-help",
"@oclif/plugin-commands"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fixthestatusquo/proca-cli.git"
},
"scripts": {
"check": "npx @biomejs/biome check --write",
"format": "npx @biomejs/biome format --write",
"lint": "npx @biomejs/biome lint --write",
"prepack": "oclif manifest && oclif readme",
"oclif": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
}
}