forked from flightpkg/flight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.56 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": "@flightpkg/cli",
"version": "0.34.0",
"description": "Flight is a universal package manager for your needs, no matter what language you may want to write your code in. ",
"main": "cli.js",
"scripts": {
"install-deps": "cd ./src/js/resolver && yarn",
"install-deps-frozen": "cd ./src/js/resolver && yarn --frozen-lockfile",
"launch": "node ./bin/index",
"compile": "ncc build cli.js -o bin",
"ci": "concurrently \"run yarn\" \"yarn install-deps\"",
"build-all-pkg": "pkg cli.js && mv cli-linux cli-macos cli-win.exe bin",
"build-linux": "nexe cli.js -o bin/cli-linux",
"build-win": "nexe cli.js -o bin/cli-win.exe",
"build-macos": "nexe cli.js -o bin/cli-macos",
"icon": "node ./scripts/update-icon.js"
},
"repository": "https://github.com/flightpkg/flight.git",
"author": "@flightpkg",
"license": "MIT",
"dependencies": {
"@sentry/node": "^7.0.0",
"@sentry/tracing": "^7.0.0",
"async": "^2.6.4",
"axios": "^0.27.2",
"dotenv": "^16.0.0",
"fs-extra": "^10.1.0",
"got": "11.8.1",
"graphlib": "^2.1.8",
"kleur": "^4.1.4",
"log-update": "4.0.0",
"npm-package-arg": "^9.0.2",
"superagent": "^7.1.2",
"tar": "^6.1.11",
"typescript": "^4.7.4",
"worker-farm": "^1.7.0"
},
"devDependencies": {
"@vercel/ncc": "^0.33.4",
"nexe": "^4.0.0-rc.1",
"nodemon": "^2.0.16",
"pkg": "^5.6.0",
"rcedit": "^3.0.1"
}
}