-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "@bdalpe/c5dk",
"version": "0.0.7",
"description": "Cloud Development Kit for Cribl",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "vitest run",
"coverage": "vitest run --coverage",
"build": "tsup",
"types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"prepublishOnly": "npm run build",
"deps": "madge --circular --extensions ts lib"
},
"author": "Brendan Dalpe ([email protected])",
"repository": {
"type": "git",
"url": "git+https://github.com/bdalpe/c5dk.git"
},
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.3.0",
"@types/tar-stream": "^3.1.3",
"@types/tmp": "^0.2.6",
"@vitest/coverage-v8": "^3.0.0",
"bumpp": "^10.0.0",
"esbuild": "^0.25.0",
"memfs": "^4.11.1",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitest": "^3.0.0"
},
"dependencies": {
"constructs": "^10.3.0",
"deepmerge": "^4.3.1",
"es-toolkit": "^1.23.0",
"isomorphic-git": "^1.27.2",
"js-yaml": "^4.1.0",
"madge": "^8.0.0",
"tar-stream": "^3.1.7",
"tmp": "^0.2.3"
}
}