-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "autopy",
"version": "1.1.1",
"description": "Library for depending on Python packages from JavaScript that will automatically manage a venv and download Python and pip dependencies.",
"bugs": "https://github.com/tweaselORG/autopy/issues",
"repository": {
"type": "git",
"url": "https://github.com/tweaselORG/autopy.git"
},
"license": "MIT",
"contributors": [
{
"name": "Benjamin Altpeter",
"email": "hi@bn.al",
"url": "https://benjamin-altpeter.de"
},
{
"name": "Lorenz Sieben",
"email": "me@lorenz-sieben.com",
"url": "https://lorenz-sieben.com"
}
],
"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": "echo 'TODO: No tests specified yet.'",
"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": {
"@mongodb-js/zstd": "^1.1.0",
"@renovatebot/pep440": "^2.1.15",
"decompress": "^4.2.1",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"global-cache-dir": "^5.0.0",
"octokit": "^2.0.14",
"proper-lockfile": "^4.1.2",
"semver": "^7.5.1"
},
"devDependencies": {
"@baltpeter/eslint-config": "2.1.2",
"@baltpeter/prettier-config": "2.0.0",
"@baltpeter/tsconfig": "3.0.0",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@types/decompress": "^4.2.4",
"@types/fs-extra": "^11.0.1",
"@types/proper-lockfile": "^4.1.2",
"@typescript-eslint/eslint-plugin": "5.59.6",
"eslint": "8.40.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"husky": "4.3.7",
"lint-staged": "13.2.2",
"parcel": "2.8.3",
"prettier": "2.8.8",
"typedoc": "0.24.7",
"typedoc-plugin-markdown": "3.15.3",
"typescript": "5.0.4"
},
"engines": {
"node": ">=14.0.0"
}
}