-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.73 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
{
"name": "alfred-search-bookmark",
"version": "2.3.0",
"description": "Search across your bookmarks from all your Chrome profiles in Alfred",
"keywords": [
"alfred",
"workflow",
"bookmark",
"chrome",
"search",
"multi-profile"
],
"homepage": "https://github.com/Avivbens/alfred-search-bookmark",
"repository": {
"type": "git",
"url": "git+https://github.com/Avivbens/alfred-search-bookmark.git"
},
"license": "MIT",
"author": {
"name": "Aviv Ben Shahar",
"email": "avivbens87@gmail.com"
},
"maintainers": [
{
"name": "Aviv Ben Shahar",
"email": "avivbens87@gmail.com"
}
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "husky || exit 0",
"start:dev": "node dist/index.js --inspect",
"test": "jest"
},
"dependencies": {
"fast-alfred": "^2.1.2",
"fuse.js": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.6",
"@semantic-release/release-notes-generator": "^14.0.0",
"@total-typescript/ts-reset": "^0.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"glob": "^10.4.1",
"husky": "^9.0.11",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"prettier-plugin-packagejson": "^2.5.0",
"semantic-release": "^23.1.1",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}