forked from ubiquity-os/command-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.47 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.47 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
{
"name": "@ubiquity-os/command-demo",
"version": "1.0.0",
"description": "Ubiquity-os demo plugin.",
"author": "Ubiquity DAO",
"license": "MIT",
"main": "src/worker.ts",
"type": "module",
"engines": {
"node": ">=24.11.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"format": "run-p format:*",
"check-formatting": "run-p check-formatting:* format:cspell",
"check-formatting:lint": "eslint --fix-dry-run",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"check-formatting:prettier": "prettier --check .",
"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 && husky install",
"prepare:manifest": "bun x @ubiquity-os/plugin-manifest-tool@latest",
"prebuild": "bun run prepare:manifest",
"jest:test": "jest --setupFiles dotenv/config --coverage",
"worker": "wrangler dev --env dev --port 4000"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@sinclair/typebox": "0.34.41",
"@ubiquity-os/plugin-sdk": "^3.12.5",
"@ubiquity-os/ubiquity-os-logger": "^1.4.0",
"hono": "^4.11.3"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@cspell/dict-node": "5.0.6",
"@cspell/dict-software-terms": "4.2.4",
"@cspell/dict-typescript": "3.2.0",
"@eslint/js": "9.19.0",
"@jest/globals": "29.7.0",
"@mswjs/data": "0.16.2",
"@octokit/webhooks-methods": "^6.0.0",
"@swc/jest": "^0.2.39",
"@types/jest": "^29.5.14",
"@types/node": "22.12.0",
"cspell": "8.17.3",
"dotenv": "^17.2.3",
"eslint": "9.19.0",
"eslint-plugin-check-file": "3.0.0",
"eslint-plugin-sonarjs": "3.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-md-dashboard": "0.8.0",
"knip": "5.79.0",
"lint-staged": "15.4.3",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"ts-node": "^10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "8.22.0",
"wrangler": "3.102.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"resolutions": {
"@sinclair/typebox": "0.34.41"
}
}