mirror of
https://github.com/withfig/autocomplete.git
synced 2026-02-01 11:36:25 +01:00
101 lines
2.7 KiB
JSON
101 lines
2.7 KiB
JSON
{
|
|
"name": "@withfig/autocomplete",
|
|
"version": "2.691.0",
|
|
"description": "Fig Autocomplete Specs",
|
|
"schemaVersion": "v7",
|
|
"main": "./build/index",
|
|
"types": "./build/index.d.ts",
|
|
"exports": {
|
|
".": "./build/index.js",
|
|
"./dynamic": "./build/dynamic/index.js"
|
|
},
|
|
"type": "module",
|
|
"packageManager": "pnpm@9.1.0+sha256.22e36fba7f4880ecf749a5ca128b8435da085ecd49575e7fb9e64d6bf4fad394",
|
|
"engines": {
|
|
"node": ">=20",
|
|
"pnpm": ">=9"
|
|
},
|
|
"browserslist": [
|
|
"safari >= 15",
|
|
"last 2 chrome versions",
|
|
"last 2 edge versions",
|
|
"last 2 firefox versions",
|
|
"maintained node versions"
|
|
],
|
|
"scripts": {
|
|
"dev": "npx @withfig/autocomplete-tools dev",
|
|
"create-spec": "npx @withfig/autocomplete-tools create-spec",
|
|
"build": "npx @withfig/autocomplete-tools compile",
|
|
"lint": "eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.ts' --parser typescript",
|
|
"lint:fix": "eslint 'src/**/*.ts' --fix && npx prettier --write 'src/**/*.ts' --parser typescript",
|
|
"test": "tsc --noEmit && echo 'All specs passed validation. You are ready to push!'",
|
|
"prepare": "husky install"
|
|
},
|
|
"fig": {
|
|
"dev": {
|
|
"description": "Watching and compile .ts files in ./src",
|
|
"icon": "fig://template?badge=🛠",
|
|
"priority": 100
|
|
},
|
|
"create-spec": {
|
|
"description": "Create a new completion spec"
|
|
},
|
|
"build": {
|
|
"description": "Compile all files in /src"
|
|
},
|
|
"lint": {
|
|
"description": "Check for linting issues"
|
|
},
|
|
"lint:fix": {
|
|
"description": "Fix linting issues"
|
|
},
|
|
"test": {
|
|
"description": "Typecheck all .ts files in /src"
|
|
},
|
|
"prepare": {
|
|
"description": "Install husky"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "es5",
|
|
"printWidth": 80
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"files": [
|
|
"build/**/*.js",
|
|
"build/**/*.css",
|
|
"build/**/*.json",
|
|
"build/**/*.d.ts",
|
|
"icons/*.png"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": "https://github.com/withfig/autocomplete/issues",
|
|
"repository": "https://github.com/withfig/autocomplete",
|
|
"devDependencies": {
|
|
"@fig/eslint-config-autocomplete": "^2.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
"@typescript-eslint/parser": "^7.18.0",
|
|
"@withfig/autocomplete-tools": "^2.11.0",
|
|
"@withfig/autocomplete-types": "^1.31.0",
|
|
"danger": "^11.3.1",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-compat": "4.2.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.3.0",
|
|
"prettier": "^3.4.2",
|
|
"typescript": "~5.5.4"
|
|
},
|
|
"dependencies": {
|
|
"@fig/autocomplete-generators": "^2.4.0",
|
|
"@fig/autocomplete-helpers": "2.0.0",
|
|
"semver": "^7.6.3",
|
|
"strip-json-comments": "^5.0.1",
|
|
"yaml": "^2.7.0"
|
|
}
|
|
}
|