-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.95 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
{
"name": "boilerplate-fig-autocomplete",
"version": "1.0.0",
"description": "Boilerplate Fig autocomplete spec package",
"scripts": {
"dev": "npx @withfig/autocomplete-tools dev",
"create-spec": "npx @withfig/autocomplete-tools create-spec",
"publish-spec": "npx @fig/publish-spec -i",
"test": "tsc --noEmit && echo 'All specs passed validation.'",
"build": "npx @withfig/autocomplete-tools compile",
"lint": "eslint '**/*.ts' && npx prettier --check '**/*.ts'",
"lint:fix": "eslint '**/*.ts' --fix && npx prettier --write '**/*.ts'"
},
"engines": {
"node": ">=16"
},
"fig": {
"dev": {
"description": "Watching and compile .ts files in ./src",
"icon": "fig://template?badge=🛠",
"priority": 100
},
"create-spec": {
"description": "Create a new spec with the provided name in ./src"
},
"publish-spec": {
"description": "Publish a spec to Fig teams"
},
"test": {
"description": "Typecheck all .ts files in ./src"
},
"build": {
"description": "Compile all files in ./src"
},
"lint": {
"description": "Check for linting issues"
},
"lint:fix": {
"description": "Fix linting issues"
}
},
"prettier": {
"trailingComma": "es5",
"printWidth": 80
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"pretty-quick --staged"
]
},
"author": "",
"license": "MIT",
"devDependencies": {
"@fig/eslint-config-autocomplete": "latest",
"@fig/publish-spec": "^1.2.0",
"@types/node": "^16.11.33",
"@withfig/autocomplete-tools": "^2.7.2",
"@withfig/autocomplete-types": "latest",
"eslint": "^8.15.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"typescript": "^4.6.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}