-
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.96 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.96 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": "pkgm",
"version": "0.3.0",
"description": "Allow setting of metadata for pkg bundled windows executables.",
"author": "Michael Szecsödi",
"license": "MIT",
"keywords": [
"pkgm",
"metadata",
"pkg",
"pkg-metadata",
"pkg metadata",
"rcedit",
"resourcehacker"
],
"main": "./dist/tsc/index.js",
"types": "./dist/tsc/index.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.ts",
"lint:fix": "eslint test/ src/ --ext .js,.ts --fix",
"test": "jest --runInBand",
"clean": "rimraf dist",
"clean:all": "npm run clean && rimraf docs .cache",
"ts-node": "ts-node",
"docs": "typedoc",
"build": "tsc -p tsconfig.json",
"build:all": "npm run clean && npm run build && npm run esbuild:lib",
"esbuild:lib": "esbuild src/index.ts --bundle --minify --sourcemap=external --platform=node --outfile=dist/esbuild/lib.js"
},
"dependencies": {
"del": "^6.0.0",
"fs-extra": "^10.0.0",
"get-stream": "^6.0.1",
"node-fetch": "2.6.5",
"pino": "^6.13.1",
"pino-pretty": "^6.0.0",
"pkg": "^5.3.1",
"pkg-fetch": "3.2.2",
"rcedit": "^3.0.1",
"tmp-promise": "^3.0.2",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"@types/node-fetch": "^2.5.12",
"@types/pino": "^6.3.11",
"@types/tmp": "^0.2.1",
"@types/unzipper": "^0.10.4",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"deepmerge": "^4.2.2",
"esbuild": "^0.12.20",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.0.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.4",
"typescript": "^4.3.5"
}
}