-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) 路 1.82 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) 路 1.82 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
{
"name": "@pittankopta/vibranium",
"description": "CLI for managing custom emulated devices on Chromium-based browsers.",
"version": "2.0.1",
"author": "Pittan @Pittan",
"bin": {
"vibranium": "./bin/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pittan/vibranium.git"
},
"bugs": "https://github.com/Pittan/vibranium/issues",
"dependencies": {
"@inquirer/prompts": "7.10.1",
"@oclif/core": "4.10.3",
"@oclif/plugin-help": "6.2.41",
"find-process": "2.0.0",
"json-beautify": "1.1.1"
},
"devDependencies": {
"@eslint/compat": "1.4.1",
"@oclif/prettier-config": "0.2.1",
"@oclif/test": "4.1.17",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "18.19.130",
"chai": "4.5.0",
"eslint": "9.39.4",
"eslint-config-oclif": "6.0.154",
"eslint-config-prettier": "10.1.8",
"mocha": "10.8.2",
"oclif": "4.22.96",
"shx": "0.3.4",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://github.com/Pittan/vibranium",
"keywords": [
"oclif"
],
"license": "MIT",
"packageManager": "pnpm@10.15.1",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "vibranium",
"dirname": "vibranium",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " "
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts"
}