-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "gitea-js",
"version": "0.0.0",
"homepage": "https://anbraten.github.io/gitea-js/",
"repository": "github:anbraten/gitea-js",
"author": "Anbraten",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"generate": "tsx contrib/generate.ts",
"build": "tsup src/index.ts --dts --format cjs,esm",
"test": "dotenv vitest",
"test:ui": "pnpm test -- --ui",
"coverage": "pnpm test run -- --coverage",
"lint:format": "prettier --check .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^17.0.3",
"@vitest/ui": "^0.33.0",
"c8": "^8.0.1",
"cross-fetch": "^4.0.0",
"dotenv-cli": "^7.2.1",
"prettier": "^3.0.0",
"swagger-typescript-api": "^13.0.2",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vitest": "^0.33.0"
}
}