-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "deboa",
"author": "Erik Moura <[email protected]>",
"version": "1.1.2",
"description": "Create .deb files in any platform with Node.js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/types/index.d.ts",
"license": "MIT",
"engines": {
"node": ">= 12.13.0"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "rimraf dist && concurrently \"yarn:build:*\"",
"build:esm": "swc --config-file .swcrc-esm ./src --out-dir dist/esm && tsc -p tsconfig.json",
"build:cjs": "swc --config-file .swcrc-cjs ./src --out-dir dist/cjs && tsc -p tsconfig.cjs.json"
},
"repository": {
"type": "git",
"url": "https://github.com/erikian/deboa.git"
},
"dependencies": {
"fast-folder-size": "^1.7.0",
"fs-extra": "^10.1.0",
"lzma-native": "^8.0.6",
"tar-fs": "^2.1.1"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.211",
"@swc/register": "^0.1.10",
"@types/fs-extra": "^9.0.13",
"@types/lzma-native": "^4.0.1",
"@types/node": "^17.0.36",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"concurrently": "^7.2.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.2"
}
}