-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.97 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
110
111
112
{
"author": "devicecloud.dev",
"bin": {
"dcd": "dist/index.js"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@supabase/supabase-js": "^2.99.1",
"bplist-parser": "^0.3.2",
"chalk": "4.1.2",
"citty": "^0.1.6",
"js-yaml": "^4.1.1",
"node-apk": "^1.2.1",
"node-stream-zip": "^1.15.0",
"plist": "^3.1.0",
"tar": "^7.5.11",
"tus-js-client": "^4.3.1",
"yazl": "^3.3.1"
},
"description": "Better cloud maestro testing",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/chai": "^4.3.20",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^25.4.0",
"@types/plist": "^3.0.5",
"@types/yazl": "^3.3.1",
"chai": "^4.5.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^64.0.0",
"husky": "^9.1.7",
"mocha": "^11.7.5",
"prettier": "^3.3.3",
"shx": "^0.4.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"/dist"
],
"homepage": "https://devicecloud.dev",
"license": "MIT",
"main": "dist/index.js",
"name": "@devicecloud.dev/dcd",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://devicecloud.dev"
},
"scripts": {
"dcd": "tsx src/index.ts",
"build": "shx rm -rf dist && tsc -b && shx chmod +x dist/index.js",
"build:binaries": "node scripts/build-binaries.mjs",
"lint": "eslint src test --ext .ts",
"prepare": "pnpm build && husky",
"test": "node scripts/test-runner.mjs",
"typecheck": "tsc --noEmit -p tsconfig.test.json"
},
"version": "5.0.0-beta.0",
"bugs": {
"url": "https://discord.gg/gm3mJwcNw8"
},
"keywords": [
"devicecloud",
"devicecloud.dev",
"dcd",
"cloud",
"maestro",
"testing"
],
"types": "dist/index.d.ts",
"packageManager": "pnpm@10.17.1",
"pnpm": {
"overrides": {
"js-yaml@<3.14.2": ">=3.14.2",
"js-yaml@>=4.0.0 <4.2.0": ">=4.2.0",
"tar@<7.5.16": ">=7.5.16",
"@isaacs/brace-expansion": ">=5.0.1",
"fast-xml-parser": ">=5.5.7",
"flatted": ">=3.4.2",
"lodash": ">=4.18.0",
"@xmldom/xmldom": ">=0.9.10",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=5.0.0 <5.1.8": "5.1.8",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"minimatch@>=10.0.0 <10.2.3": "10.2.3",
"picomatch@<2.3.2": "2.3.2",
"picomatch@>=4.0.0 <4.0.4": "4.0.4",
"serialize-javascript": ">=7.0.5",
"ajv@<7.0.0": "6.14.0",
"diff@>=4.0.0 <6.0.0": "4.0.4",
"diff@>=6.0.0": "8.0.3",
"brace-expansion@<1.1.13": "1.1.13",
"brace-expansion@>=2.0.0 <2.0.3": "2.0.3",
"brace-expansion@>=4.0.0 <5.0.6": "5.0.6",
"ws@>=8.0.0 <8.21.0": "8.21.0",
"esbuild@<0.28.1": ">=0.28.1",
"micromatch>picomatch": "^2.3.2",
"tinyglobby>picomatch": "^4.0.4"
}
}
}