-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "@gewis/planka-client",
"version": "1.2.0",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "tsc --noEmit && vite build",
"test": "vitest run",
"example": "tsx example/example.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 --max-warnings=1",
"lint-fix": "eslint src --fix",
"format": "prettier --check ./src/",
"format-fix": "prettier --write ./src/",
"prepublishOnly": "yarn install --frozen-lockfile && yarn build"
},
"main": "dist/planka-client.umd.cjs",
"module": "dist/planka-client.js",
"types": "dist/planka-client.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/planka-client.js",
"require": "./dist/planka-client.umd.cjs",
"types": "./dist/planka-client.d.ts"
}
},
"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",
"@types/node": "^25.2.2",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"dependencies": {
"@hey-api/client-fetch": "^0.13.1"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@4.5.1"
}