-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.55 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
{
"name": "@rxdi/firelink",
"version": "0.9.2",
"bin": {
"firelink": "./dist/main.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "npx [email protected] build ./src/main.ts --experimental-scope-hoisting --target node",
"build-binary": "npx gapi build --single-executable && mkdir binaries && npm run copy-binaries",
"build-all": "npm run build-binary && rm -rf dist && npm run build",
"test": "npx jest",
"lint": "npx eslint . --ext .ts",
"prepare": "husky install",
"lint-fix": "npx eslint . --fix --ext .ts",
"publish-package": "npm publish --update-readme --access public",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . -r 0",
"ammend-changelog": "git commit --amend --no-edit",
"copy-binaries": "cp -r ./dist/firelink-linux ./binaries && cp -r ./dist/firelink-macos ./binaries && cp -r ./dist/firelink-win.exe ./binaries"
},
"files": [
"dist/*"
],
"fireConfig": {
"runner": "dir"
},
"devDependencies": {
"@rxdi/parcel-plugin-shebang": "^0.7.156",
"@types/jest": "29.2.0",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.1",
"jest": "29.2.2",
"jest-cli": "29.2.2",
"prettier": "^2.7.1",
"ts-jest": "29.0.3",
"typescript": "^4.8.4"
}
}