-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "@rage-js/tools",
"version": "0.2.0",
"description": "Tool kit for managing local data created by RAGE.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "npx tsup src/index.ts --format cjs,esm --dts",
"docs": "npx typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rage-js/tools.git"
},
"keywords": [
"rage",
"rage-js",
"rage-tools",
"rage-tool"
],
"author": "Maghish",
"license": "MIT",
"bugs": {
"url": "https://github.com/rage-js/tools/issues"
},
"homepage": "https://github.com/rage-js/tools#readme",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@types/node": "^20.14.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typedoc": "^0.26.8",
"typedoc-github-theme": "^0.1.2",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^4.0.0",
"mongodb": "^6.7.0"
}
}