-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@itplusx/sevdesk-api-ts-client",
"version": "1.0.2",
"description": "TypeScript API Client for sevdesk API (2.0.0)",
"license": "MIT",
"sideEffects": false,
"type": "module",
"repository": "itplusx/sevdesk-api-ts-client",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"sevdesk",
"typescript",
"api"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"lint:fix": "automd && eslint . --fix",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2.0.5",
"automd": "^0.3.8",
"changelogen": "^0.5.5",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"eslint-config-unjs": "^0.3.2",
"jiti": "^2.0.0-beta.3",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"unbuild": "^3.0.0-rc.7",
"vitest": "^2.0.5"
},
"packageManager": "pnpm@9.7.0"
}