-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.06 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@apt-repositories/generator",
"version": "1.0.1",
"license": "MIT",
"author": "Oliver Salzburg <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/apt-repositories/generator.git"
},
"bugs": {
"url": "https://github.com/apt-repositories/generator/issues"
},
"type": "module",
"bin": {
"generate": "output/generate.js",
"observe": "output/observe.js",
"validate": "output/validate.js"
},
"files": [
"output/generate.js",
"output/generate.js.map",
"output/observe.js",
"output/observe.js.map",
"output/validate.js",
"output/validate.js.map"
],
"scripts": {
"build": "node build.js",
"clean": "rm -rf ./output",
"lint": "yarn run lint:all",
"lint:all": "yarn run lint:eslint && yarn run lint:prettier && yarn run lint:tsc",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"nextversion": "./.scripts/manifest-version.cjs",
"prepack": "yarn run build",
"test": "echo this project has no tests.",
"preversion": "yarn run lint && yarn run build && yarn run test",
"postversion": "git push"
},
"dependencies": {
"@oliversalzburg/js-utils": "0.2.2",
"apt-parser": "1.5.1",
"outdent": "0.8.0",
"undici": "7.3.0",
"xz-decompress": "0.2.2"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@oliversalzburg/eslint-config": "1.3.0",
"@types/chai": "5.0.1",
"@types/eslint": "9.6.1",
"@types/mocha": "10.0.10",
"@types/node": "22.13.1",
"esbuild": "0.25.0",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jsdoc": "50.6.3",
"eslint-plugin-tsdoc": "0.4.0",
"globals": "15.14.0",
"lint-staged": "15.4.3",
"prettier": "3.5.0",
"prettier-package-json": "2.8.0",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-sh": "0.14.0",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0"
},
"packageManager": "[email protected]"
}