-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1010 Bytes
/
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
{
"name": "@commutelive/common",
"version": "2.5.1",
"description": "Contains shared types and functions for [Commute.live](https://commute.live).",
"main": "dist/index.js",
"author": "Matt Moran",
"license": "GPL-3.0",
"homepage": "https://github.com/DarkMatterMatt/commute.live/packages/common#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DarkMatterMatt/commute.live.git"
},
"bugs": {
"url": "https://github.com/DarkMatterMatt/commute.live/issues"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsc && tsc-alias",
"lint": "eslint --fix src && tsc --noEmit",
"test": "npm run build && mocha --paths \"dist/**/*.spec.ts\""
},
"type": "module",
"engines": {
"node": ">=18"
},
"devDependencies": {
"eslint-import-resolver-typescript": "^3.5.3",
"rimraf": "^4.1.2",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.5"
}
}