-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
package.json
95 lines (95 loc) · 2.61 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
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
{
"name": "@withfig/autocomplete",
"version": "2.684.0",
"description": "Fig Autocomplete Specs",
"schemaVersion": "v7",
"main": "./build/index",
"types": "./build/index.d.ts",
"type": "module",
"packageManager": "[email protected]+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 '**/*.ts' && npx prettier --check '**/*.ts' --parser typescript",
"lint:fix": "eslint '**/*.ts' --fix && npx prettier --write '**/*.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",
"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.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@withfig/autocomplete-tools": "^2.10.0",
"@withfig/autocomplete-types": "^1.31.0",
"danger": "^11.3.1",
"eslint": "^8.57.0",
"eslint-plugin-compat": "4.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "~5.5.2"
},
"dependencies": {
"@fig/autocomplete-generators": "^2.4.0",
"@fig/autocomplete-helpers": "^1.0.7",
"semver": "^7.6.2",
"strip-json-comments": "^5.0.1",
"yaml": "^2.4.5"
}
}