-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "linear-webhook",
"version": "0.3.1",
"description": "Webhook handler for Linear",
"main": "lib/index.js",
"module": "lib/index.js",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "npm-run-all -l -s clean compile",
"prerelease": "npm-run-all -l -p lint test -s build",
"clean": "rimraf lib",
"compile": "tsc",
"lint": "biome ci .",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"release": "shipjs prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/korosuke613/linear-webhook.git"
},
"files": ["lib", "!**/__tests__"],
"keywords": ["Linear.app"],
"author": "Futa Hirakoba <korosuke613613@gmail.com> (https://korosuke613.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/korosuke613/linear-webhook/issues"
},
"homepage": "https://github.com/korosuke613/linear-webhook#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "20.19.1",
"@vitest/coverage-v8": "2.0.5",
"npm-run-all2": "6.2.6",
"rimraf": "6.0.1",
"shipjs": "0.27.0",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"vitest": "2.0.5"
}
}