-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
64
65
66
67
68
69
70
71
{
"name": "reporthar",
"version": "0.1.1",
"description": "Library for generating technical reports, notices, and GDPR complaints concerning tracking by mobile apps for the tweasel project.",
"bugs": "https://github.com/tweaselORG/ReportHAR/issues",
"repository": {
"type": "git",
"url": "https://github.com/tweaselORG/ReportHAR.git"
},
"license": "MIT",
"author": "Benjamin Altpeter <[email protected]>",
"type": "module",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "parcel build",
"fix": "yarn eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --fix",
"lint": "tsc && eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx && git diff --check",
"prepack": "rm -rf dist && yarn build && yarn typedoc",
"test": "tsx test/test-generate.ts",
"watch": "parcel watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc && typedoc && git add docs"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx,css,scss,json}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint --fix"
]
},
"prettier": "@baltpeter/prettier-config",
"dependencies": {
"@myriaddreamin/typst-ts-web-compiler": "^0.4.1",
"@myriaddreamin/typst.ts": "^0.4.1",
"@tweasel/nunjucks": "^3.2.4-tweasel1",
"hexy": "^0.3.5",
"papaparse": "^5.4.1",
"safe-buffer": "^5.2.1",
"trackhar": "^1.0.0"
},
"devDependencies": {
"@baltpeter/eslint-config": "2.2.0",
"@baltpeter/prettier-config": "2.0.0",
"@baltpeter/tsconfig": "3.0.0",
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/har-format": "^1.2.15",
"@types/node": "^20.10.4",
"@types/papaparse": "^5.3.14",
"@typescript-eslint/eslint-plugin": "5.60.1",
"eslint": "8.43.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"husky": "4.3.7",
"lint-staged": "15.2.7",
"parcel": "2.12.0",
"prettier": "2.8.8",
"typedoc": "0.24.8",
"typedoc-plugin-markdown": "3.15.3",
"typescript": "5.1.6"
}
}