-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.68 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.68 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "sovereign",
"description": "Reclaim your digital freedom.",
"private": true,
"version": "4",
"cliVersion": "1.0.0-alpha.4",
"license": "AGPL-3.0",
"bin": {
"sv": "./bin/sv.mjs"
},
"workspaces": [
"platform",
"plugins/*",
"packages/*"
],
"scripts": {
"preinstall": "yarn plugins:pull",
"prepare": "husky",
"postinstall": "node -e \"if (process.env.SV_LINK==='1'){try{require('child_process').execSync('yarn sv:link',{stdio:'inherit'})}catch(e){process.exit(0)}}\"",
"sv:link": "yarn link --silent || true",
"sv:backup": "node tools/sovereign-backup.mjs",
"sv:deploy": "bash tools/sovereign-deploy.sh",
"prepare:env": "yarn workspace @sovereign/platform prepare:env",
"prepare:db": "yarn prisma:compose && yarn workspace @sovereign/platform prepare:db",
"prepare:manifest": "yarn build:manifest",
"prepare:all": "yarn prepare:db && yarn prepare:manifest",
"postprepare:all": "yarn prisma:seed",
"prebuild": "yarn build:manifest",
"build": "yarn workspaces run build",
"build:manifest": "node tools/build-manifest.mjs",
"openapi:validate": "node tools/validate-openapi.mjs",
"postbuild": "yarn build:manifest",
"dev": "yarn workspace @sovereign/platform dev",
"start": "yarn workspace @sovereign/platform start",
"start:mcp": "node ./tools/mcp-server/server.mjs",
"format:check": "prettier --check .",
"format": "prettier --ignore-path .prettierignore --write .",
"lint:check": "eslint .",
"lint": "eslint . --fix",
"format:all": "yarn format && yarn lint && yarn workspace @sovereign/platform format:all",
"plugins:pull": "node tools/plugins-pull.mjs",
"plugins:update": "node tools/plugins-update.mjs",
"prisma:compose": "node tools/database-prisma-compose.mjs",
"prisma:compose:check": "node tools/database-prisma-compose.mjs --check",
"prisma:generate": "yarn workspace @sovereign/platform prisma:generate",
"prisma:migrate": "yarn workspace @sovereign/platform prisma:migrate:create",
"prisma:apply": "yarn workspace @sovereign/platform prisma:migrate",
"prisma:deploy": "yarn workspace @sovereign/platform prisma:deploy",
"prisma:seed": "node tools/database-seed-all.mjs",
"prisma:studio": "yarn workspace @sovereign/platform prisma:studio",
"prisma:reset": "yarn workspace @sovereign/platform prisma:reset",
"test": "node --import ./platform/scripts/register-alias.mjs --test --import ./tests/setup.mjs ./tests/*.test.mjs ./plugins/*/tests/**/*.test.mjs",
"test:watch": "node --import ./platform/scripts/register-alias.mjs --test --watch --import ./tests/setup.mjs ./tests/*.test.mjs ./plugins/*/tests/**/*.test.mjs",
"reset:all": "yarn workspace @sovereign/platform reset"
},
"dependencies": {
"@prisma/client": "^6.18.0",
"execa": "^9.6.0",
"fast-glob": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.3.3",
"supertest": "^7.1.4"
},
"plugins": {
"@sovereign/blog": "git@github.com:CommonsEngine/sovereign-blog.git",
"@sovereign/splitify": "git@github.com:CommonsEngine/sovereign-splitify.git",
"@sovereign/tasks": "git@github.com:CommonsEngine/sovereign-tasks.git",
"@kasunben/papertrail": "git@github.com:kasunben/PaperTrail.git"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@1.22.22",
"repository": "https://github.com/CommonsEngine/Sovereign#readme",
"bugs": {
"url": "https://github.com/CommonsEngine/Sovereign/issues",
"email": "mailtokasun@gmail.com"
},
"contributors": [
{
"name": "Kasun Benthara",
"email": "mailtokasun@gmail.com",
"url": "https://github.com/kasunben"
},
{
"name": "Dishan Rajapaksha",
"email": "DishanRajapaksha@email.com",
"url": "https://github.com/DishanRajapaksha"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kasunben"
},
"keywords": [
"sovereign",
"digital-sovereignty",
"self-determination",
"privacy-first",
"open-source",
"decentralized",
"federated",
"commons",
"digital-commons",
"collaboration-suite",
"productivity-suite",
"privacy",
"data-protection",
"human-rights-tech",
"ethical-tech",
"alternative-to-big-tech",
"community-driven",
"digital-rights",
"freedom-software",
"cloud-self-hosted",
"agpl",
"secure-collaboration",
"self-hosted",
"open-infrastructure",
"civic-tech",
"commonsengine"
]
}