generated from ubiquity/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
99 lines (99 loc) · 2.7 KB
/
package.json
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
{
"name": "@ubiquity-os/conversation-rewards",
"version": "1.0.0",
"description": "Generate rewards for on topic conversation for closing issues as complete.",
"author": "Ubiquity DAO",
"license": "MIT",
"engines": {
"node": ">=20.10.0"
},
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --setupFiles dotenv/config --coverage",
"start": "tsx src/index.ts",
"format": "run-s format:lint format:prettier format:cspell",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format:cspell": "cspell **/*",
"knip": "knip",
"prepare": "husky install",
"dev": "bun --watch src/index.ts"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@actions/github": "^6.0.0",
"@octokit/graphql-schema": "^15.25.0",
"@octokit/rest": "^21.0.2",
"@sinclair/typebox": "^0.33.21",
"@supabase/supabase-js": "2.42.0",
"@ubiquity-dao/rpc-handler": "1.3.0",
"@ubiquity-os/permit-generation": "^2.0.6",
"@ubiquity-os/plugin-sdk": "^1.0.11",
"@ubiquity-os/ubiquity-os-logger": "^1.3.2",
"@octokit/plugin-paginate-graphql": "^5.2.4",
"decimal.js": "10.4.3",
"ethers": "^5.7.2",
"js-tiktoken": "1.0.15",
"jsdom": "24.0.0",
"markdown-it": "14.1.0",
"openai": "4.56.0",
"ts-jest": "^29.2.5",
"tsx": "4.7.1",
"yaml": "2.4.1"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@cspell/dict-node": "5.0.4",
"@cspell/dict-software-terms": "4.1.10",
"@cspell/dict-typescript": "3.1.9",
"@eslint/js": "^9.12.0",
"@mswjs/data": "0.16.2",
"@types/jest": "29.5.12",
"@types/jsdom": "21.1.6",
"@types/markdown-it": "13.0.7",
"@types/node": "20.11.28",
"babel-jest": "29.7.0",
"cross-env": "^7.0.3",
"cspell": "8.15.2",
"dotenv": "^16.4.5",
"eslint": "9.12.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-sonarjs": "2.0.3",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-md-dashboard": "0.8.0",
"knip": "^5.36.2",
"lint-staged": "15.2.2",
"msw": "2.4.9",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"lint-staged": {
"*.ts": [
"bun prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}