-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "detsys-ts",
"version": "1.0.0",
"description": "TypeScript goodies for DetSys projects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"check-fmt": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src/**/*.ts",
"docs": "typedoc",
"test": "vitest --watch false",
"test-dev": "vitest",
"all": "rm -rf dist && pnpm run format && pnpm run lint && pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeterminateSystems/detsys-ts.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeterminateSystems/detsys-ts/issues"
},
"homepage": "https://github.com/DeterminateSystems/detsys-ts#readme",
"dependencies": {
"@actions/cache": "^3.3.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"got": "^14.4.5",
"type-fest": "^4.33.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.17.17",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typedoc": "^0.25.13",
"typescript": "^5.7.3",
"vitest": "^1.6.1"
}
}