forked from ubiquity-os-marketplace/command-start-stop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.16 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.16 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
{
"name": "@ubiquity-os/command-start-stop",
"version": "1.0.0",
"description": "Enables the assignment and graceful unassignment of tasks to contributors.",
"main": "src/worker.ts",
"type": "module",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"format": "run-s format:lint format:prettier format:cspell",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format:cspell": "cspell **/*",
"knip": "knip --config .github/knip.ts",
"knip-ci": "knip --no-exit-code --reporter json --config .github/knip.ts",
"prepare": "bun run prepare:manifest && node .husky/install.mjs",
"test:jest": "jest --setupFiles dotenv/config --coverage",
"dev:deno": "deno serve -A --unstable-kv --watch --no-clear-screen --env-file=.env --port 4000 src/worker.ts",
"prebuild": "rimraf dist",
"prepare:manifest": "bun x @ubiquity-os/plugin-manifest-tool@latest",
"predev": "bun run prepare:manifest"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@hono/standard-validator": "^0.2.0",
"@hono/swagger-ui": "^0.5.2",
"@octokit/auth-app": "^8.1.2",
"@octokit/graphql-schema": "^15.26.1",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@octokit/rest": "^22.0.1",
"@sinclair/typebox": "^0.34.41",
"@standard-community/standard-json": "^0.3.5",
"@supabase/supabase-js": "2.87.1",
"@ubiquity-os/plugin-sdk": "3.12.8",
"@ubiquity-os/ubiquity-os-logger": "^1.4.0",
"@valibot/to-json-schema": "^1.5.0",
"hono": "^4.11.1",
"hono-openapi": "^1.1.2",
"hono-rate-limiter": "^0.5.0",
"ms": "^2.1.3",
"quansync": "^0.2.11",
"valibot": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cspell/dict-node": "5.0.8",
"@cspell/dict-software-terms": "5.1.9",
"@cspell/dict-typescript": "3.2.3",
"@eslint/js": "9.14.0",
"@jest/globals": "29.7.0",
"@mswjs/data": "0.16.1",
"@swc/core": "^1.15.3",
"@swc/jest": "^0.2.39",
"@types/bun": "^1.3.4",
"@types/deno": "^2.5.0",
"@types/jest": "30.0.0",
"@types/ms": "^0.7.34",
"@types/node": "24.10.2",
"cspell": "9.2.1",
"dotenv": "^16.6.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-check-file": "2.8.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sonarjs": "1.0.3",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-md-dashboard": "0.8.0",
"knip": "5.73.0",
"lint-staged": "15.2.7",
"msw": "^2.12.4",
"npm-run-all": "4.1.5",
"prettier": "3.3.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.49.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"resolutions": {
"hono": "4.11.1"
}
}