-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@typhonjs-oclif/core",
"description": "Provides TyphonJS extensions to building ESM Oclif V2 CLIs.",
"version": "0.0.22",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"exports": {
".": "./src/index.js",
"./DynamicCommandHelp": "./src/command/dynamic/DynamicCommandHelp.js",
"./hooks/init": "./src/hooks/init.js",
"./package.json": "./package.json",
"./types": "./types/index.d.ts"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"dependencies": {
"@oclif/core": "^0.5.0",
"@typhonjs-oclif/errors": "^0.0.0",
"@typhonjs-plugin/manager": "^0.0.10",
"@typhonjs-utils/cosmiconfig": "^0.0.6",
"@typhonjs-utils/error-parser": "^0.0.10",
"@typhonjs-utils/file-archive": "^0.0.2",
"@typhonjs-utils/file-util": "^0.0.2",
"@typhonjs-utils/logger-color": "^0.0.1",
"@typhonjs-utils/package-json": "^0.6.0",
"dotenv": "^8.0.0"
},
"devDependencies": {
"@typhonjs-utils/build-test": "^0.1.0",
"rollup": "^2",
"rollup-plugin-dts": "^3.0.0"
},
"engines": {
"node": ">=14"
},
"types": "./types/index.d.ts",
"files": [
"/npm-shrinkwrap.json",
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-oclif/core#readme",
"keywords": [
"typhonjs",
"oclif",
"core"
],
"license": "MPL-2.0",
"bugs": "https://github.com/typhonjs-oclif/core/issues",
"repository": "github:typhonjs-oclif/core",
"scripts": {
"eslint": "eslint .",
"prepublishOnly": "npm run eslint",
"types": "npx -p typescript tsc --project tsconfig.types.json && rollup --config rollup.config.types.js"
}
}