-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@gewis/planka-client",
"version": "2.0.0",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "tsc --noEmit && vite build",
"test": "vitest run",
"example": "tsx example/example.ts",
"update-swagger": "node scripts/update-swagger.mjs",
"generate": "openapi-ts",
"release-major": "release-it --ci major --git.commitMessage=\"chore: release ${version}\" --git.requireBranch=main --no-github.release --no-npm.publish",
"release": "release-it --ci minor --git.commitMessage=\"chore: release ${version}\" --git.requireBranch=main --no-github.release --no-npm.publish",
"lint": "eslint src test example --max-warnings=1",
"lint-fix": "eslint src test example --fix",
"format": "prettier --check ./src/ ./test/ ./example/",
"format-fix": "prettier --write ./src/ ./test/ ./example/",
"prepublishOnly": "corepack enable && yarn install --immutable && yarn build"
},
"main": "dist/planka-client.umd.cjs",
"module": "dist/planka-client.js",
"types": "dist/planka-client.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/planka-client.d.ts",
"import": "./dist/planka-client.js",
"require": "./dist/planka-client.umd.cjs"
}
},
"files": [
"dist/",
"src/",
"package.json",
"LICENSE.txt",
"README.md"
],
"author": "Gijs de Man",
"repository": {
"type": "git",
"url": "git+https://github.com/GEWIS/planka-client.git"
},
"bugs": {
"url": "https://github.com/GEWIS/planka-client/issues"
},
"homepage": "https://github.com/GEWIS/planka-client#readme",
"devDependencies": {
"@gewis/eslint-config-typescript": "2.4.0",
"@gewis/prettier-config": "2.2.2",
"@gewis/release-config": "2.4.0",
"@hey-api/openapi-ts": "0.98.2",
"@types/node": "25.9.3",
"eslint": "9.39.4",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"prettier": "3.8.4",
"ts-node": "10.9.2",
"tsx": "4.22.4",
"typescript": "6.0.3",
"typescript-eslint": "8.61.0",
"vite": "8.0.16",
"vite-plugin-dts": "5.0.2",
"vitest": "4.1.9"
},
"dependencies": {
"@hey-api/client-fetch": "0.13.1"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.5.1"
}