-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "@stricli/auto-complete",
"version": "1.1.1",
"description": "Common utilities for enhancing Stricli applications with autocomplete",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bloomberg/stricli/tree/main/packages/auto-complete"
},
"author": "Michael Molisani <mmolisani@bloomberg.net>",
"files": [
"dist"
],
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"bin": "dist/bin/cli.js",
"scripts": {
"format": "prettier --config ../../.prettierrc -w .",
"format:check": "prettier --config ../../.prettierrc -c .",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "tsup",
"prepublishOnly": "npm run build"
},
"tsup": {
"entry": [
"src/index.ts",
"src/bin/cli.ts"
],
"format": [
"esm",
"cjs"
],
"tsconfig": "src/tsconfig.json",
"dts": true,
"minify": true,
"clean": true
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tsup": "^6.7.0",
"typescript": "5.6.x"
},
"dependencies": {
"@stricli/core": "^1.1.1"
}
}