-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.31 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.31 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@apollo-annotation/cli",
"version": "0.3.8",
"description": "Command line interface for the Apollo annotation server",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/Apollo3.git",
"directory": "packages/apollo-cli"
},
"author": "Apollo Team",
"type": "module",
"exports": "./dist/index.js",
"main": "",
"types": "dist/index.d.ts",
"bin": {
"apollo": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"dev": "tsx bin/dev.js",
"prepack": "yarn build && oclif manifest && oclif readme && prettier --write README.md",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "yarn build",
"test": "mocha --require src/test/fixtures.ts 'src/**/*.test.ts'",
"posttest": "yarn lint",
"test:ci": "nyc mocha 'src/**/*.test.ts'",
"test:cli": "yarn tsx src/test/test.ts",
"version": "oclif readme --multi --dir ../website/docs/03-guides/04-cli/ && oclif readme && git add README.md"
},
"oclif": {
"bin": "apollo",
"commands": "./dist/commands",
"dirname": "apollo-cli",
"helpOptions": {
"flagSortOrder": "none",
"maxWidth": 80
},
"plugins": [
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/v<%- version %>/packages/apollo-cli/<%- commandPath %>",
"topicSeparator": " ",
"topics": {
"assembly": {
"description": "Commands to manage assemblies"
},
"change": {
"description": "Commands to manage the change log"
},
"export": {
"description": "Commands to export data"
},
"feature": {
"description": "Commands to manage features"
},
"file": {
"description": "Commands to manage files"
},
"jbrowse": {
"description": "Commands to manage the JBrowse configuration"
},
"refseq": {
"description": "Commands to manage reference sequences"
},
"user": {
"description": "Commands to manage users"
}
}
},
"dependencies": {
"@inquirer/input": "^1.2.14",
"@inquirer/password": "^1.1.14",
"@inquirer/select": "^1.3.1",
"@oclif/core": "^3.18.2",
"@oclif/plugin-help": "^6.0.8",
"bson": "^6.3.0",
"cli-progress": "^3.12.0",
"conf": "^12.0.0",
"joi": "^17.7.0",
"nanoid": "^4.0.2",
"open": "^10.1.0",
"tslib": "^2.3.1",
"undici": "^6.7.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@apollo-annotation/mst": "workspace:^",
"@apollo-annotation/shared": "workspace:^",
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@oclif/test": "^3.1.3",
"@types/chai": "^4.3.19",
"@types/cli-progress": "^3",
"@types/cross-spawn": "^6.0.6",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10",
"@types/node": "^20.19.15",
"babel-plugin-istanbul": "^6.1.1",
"cross-spawn": "^7.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"oclif": "^4.4.2",
"prettier": "^3.3.2",
"react-dom": "^18.2.0",
"rxjs": "^7.4.0",
"serve": "^14.0.1",
"shx": "^0.3.3",
"ts-node": "^10.3.0",
"tsx": "^4.6.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}