-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "youtrack-client",
"description": "Client library for accessing the YouTrack REST and Widget API",
"version": "0.5.0",
"type": "module",
"keywords": [
"youtrack",
"client",
"rest",
"rest api",
"widget",
"api",
"typescript",
"jetbrains",
"sdk"
],
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"browser": "dist/youtrack-client.min.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"check": "biome check",
"format": "biome format",
"test:types": "tsd"
},
"peerDependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.13",
"axios": "^1.7.7",
"hub-dashboard-addons": "1.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.21.3",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-progress": "^1.1.2",
"tsd": "^0.31.2",
"typescript": "^5.5.4"
},
"tsd": {
"directory": "test/types"
}
}