-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.71 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.71 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
{
"name": "ricecoder",
"version": "0.1.72",
"description": "Terminal-first, spec-driven coding assistant that understands your project before generating code",
"main": "index.js",
"bin": {
"ricecoder": "./bin/ricecoder",
"rice": "./bin/ricecoder"
},
"scripts": {
"postinstall": "node scripts/install.js",
"test": "jest",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/moabualruz/ricecoder.git"
},
"homepage": "https://github.com/moabualruz/ricecoder",
"bugs": {
"url": "https://github.com/moabualruz/ricecoder/issues"
},
"keywords": [
"ai",
"coding-assistant",
"cli",
"rust",
"terminal",
"spec-driven",
"llm",
"mcp",
"enterprise",
"security",
"code-generation",
"refactoring"
],
"author": "RiceCoder Contributors",
"license": "CC BY-NC-SA 4.0",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"bin",
"scripts",
"README.md",
"LICENSE.md",
"SECURITY.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"adm-zip": "^0.5.10"
},
"devDependencies": {
"jest": "^29.0.0"
},
"enterprise": {
"features": [
"MCP Protocol Support",
"Enterprise Security (AES-256-GCM encryption)",
"RBAC Access Control",
"Audit Logging",
"Session Management",
"Provider Ecosystem",
"Compliance (SOC 2, GDPR, HIPAA)"
],
"support": {
"email": "enterprise@ricecoder.dev",
"docs": "https://github.com/moabualruz/ricecoder/wiki/Enterprise"
}
}
}