-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.58 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.58 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
{
"name": "datev-extf",
"version": "0.0.10",
"description": "Export data as DATEV EXTF files!",
"files": [
"dist"
],
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PassiDel/datev-extf.git"
},
"bugs": {
"url": "https://github.com/PassiDel/datev-extf/issues"
},
"scripts": {
"build": "npm run clean && npm run type:dts",
"clean": "rimraf dist",
"test": "vitest run",
"type:check": "tsc --noEmit",
"type:dts": "tsc -p ./tsconfig.lib.json",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"check": "npm run type:check && npm run format:check",
"prepublishOnly": "npm run build",
"prerelease": "npm run check && npm run build && npm run test"
},
"keywords": [
"DATEV",
"EXTF",
"Accounting",
"Export"
],
"author": {
"name": "Pascal Syma",
"email": "npm@syma.dev",
"url": "https://syma.dev"
},
"license": "All rights reserved.",
"devDependencies": {
"@types/iconv": "^3.0.4",
"@types/node": "^20.16.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"iconv": "^3.0.1"
}
}