-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.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": "semantic-release-pypi",
"version": "4.0.3",
"description": "semantic-release plugin to publish a python package to PyPI",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/abichinger/semantic-release-pypi",
"author": "Andreas Bichinger",
"license": "MIT",
"private": false,
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.7.7",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"copyfiles": "^2.4.1",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"fs-extra": "^10.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.5",
"typescript": "^5.2.2",
"uuid": "^8.3.1",
"vitest": "^2.1.3"
},
"scripts": {
"build": "yarn clean && tsc --project tsconfig.build.json && yarn copy",
"test": "vitest",
"lint": "eslint lib/*.ts test/*.ts",
"clean": "rimraf dist/ && rimraf .tmp/",
"copy": "copyfiles -u 1 lib/py/* dist"
},
"dependencies": {
"execa": "^9.4.1",
"form-data": "^3.0.0",
"got": "^12.6.1"
},
"files": [
"dist/*",
"requirements.txt"
],
"keywords": [
"pypi",
"python",
"python package",
"semantic-release",
"publish"
]
}