-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·127 lines (127 loc) · 4.07 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "fast-alfred",
"version": "2.2.0",
"description": "Your Alfred friendly framework, for developing Alfred workflows in TypeScript/JavaScript.",
"keywords": [],
"homepage": "https://github.com/Avivbens/fast-alfred",
"repository": {
"type": "git",
"url": "git+https://github.com/Avivbens/fast-alfred.git"
},
"license": "MIT",
"author": {
"name": "Aviv Ben Shahar",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Aviv Ben Shahar",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"fast-alfred": "lib/bin/index.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "./scripts/build.sh",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"prepare": "husky || exit 0",
"prepublish": "npm run build",
"test": "jest",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"moduleNameMapper": {
"^@db/(.*)$": "<rootDir>/common/db/$1",
"^@common/(.*)$": "<rootDir>/common/$1",
"^@auth/(.*)$": "<rootDir>/auth/$1"
},
"rootDir": "src",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"dependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"alfred-config": "^0.2.3",
"conf": "^10.2.0",
"esbuild": "^0.21.4",
"glob": "^10.4.1",
"lodash.merge": "^4.6.2",
"nest-commander": "^3.13.0",
"ora": "^5.4.1",
"plist": "^3.1.0",
"semver": "^7.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@total-typescript/ts-reset": "^0.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.14.0",
"@types/plist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsonc": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"semantic-release": "^23.0.8",
"source-map-support": "^0.5.20",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"vitepress": "^1.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}