-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.84 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
{
"name": "@arkts/sdk-downloader",
"type": "module",
"version": "0.1.32",
"description": "Download and extract the ArkTS SDK.",
"author": "Naily Zero <zero@naily.cc>",
"license": "MIT",
"homepage": "https://github.com/ohosvscode/sdk-downloader#readme",
"repository": {
"type": "git",
"url": "https://github.com/ohosvscode/sdk-downloader.git"
},
"bugs": {
"url": "https://github.com/ohosvscode/sdk-downloader/issues"
},
"keywords": [
"arkts",
"sdk",
"downloader",
"openharmony"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"arkcode-sdk-downloader": "./bin/cli.js"
},
"files": [
"bin",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest --ui --coverage",
"build": "tsdown",
"lint": "eslint .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"alien-signals": "^2.0.5",
"cac": "^6.7.14",
"fast-glob": "^3.3.3",
"mitt": "^3.0.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"progress-stream": "^2.0.0",
"tar": "^7.4.3",
"tar-stream": "^3.1.7",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@actions/cache": "^4.0.5",
"@actions/core": "^1.11.1",
"@antfu/eslint-config": "^4.14.1",
"@changesets/cli": "^2.29.4",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.15.30",
"@types/progress-stream": "^2.0.5",
"@types/tar-stream": "^3.1.4",
"@types/unzipper": "^0.10.11",
"@vitest/coverage-v8": "^3.2.2",
"@vitest/ui": "^3.2.2",
"cli-progress": "^3.12.0",
"tsdown": "^0.12.7",
"tsx": "^4.19.4",
"typescript": "5.8.3",
"vitest": "^3.2.2"
}
}