-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.66 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.66 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
{
"name": "@withfig/autocomplete-tools",
"version": "2.11.0",
"description": "Command line tools for working with fig autocomplete specs",
"author": "The Fig Team",
"scripts": {
"build": "rm -rf build/ && pnpm run build:bin && pnpm run build:lib",
"build:bin": "esbuild src/bin.ts --bundle --platform=node --packages=external --outdir=build --minify --format=esm",
"build:lib": "tsc",
"test": "tsx test/index.ts",
"test:overwrite": "OVERWRITE=true pnpm test",
"prepack": "pnpm build",
"generate-spec": "tsx generate-spec.ts generate-fig-spec"
},
"license": "MIT",
"type": "module",
"bin": "./build/bin.js",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/"
],
"dependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@fig/autocomplete-helpers": "workspace:^",
"@fig/autocomplete-merge": "workspace:^",
"@types/semver": "^7.5.8",
"chalk": "^5.4.1",
"chokidar": "^4.0.1",
"commander": "^13.0.0",
"create-completion-spec": "workspace:^",
"esbuild": "^0.24.2",
"fast-glob": "^3.3.2",
"module-from-string": "^3.3.1",
"prettier": "^3.3.3",
"semver": "^7.6.3",
"typescript": "^5.7.3"
},
"devDependencies": {
"@fig/complete-commander": "workspace:^",
"@types/node": "^22.5.2",
"@withfig/autocomplete-types": "workspace:^",
"tsx": "^4.19.2"
},
"fig": {
"build": {
"description": "Typecheck and build the project",
"icon": "🛠"
},
"prepack": {
"description": "Run build before packing the package for publishing",
"icon": "🛠"
}
},
"publishConfig": {
"access": "public"
}
}