forked from bradymadden97/freephite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@bradymadden97/freephite-cli",
"version": "0.1.6",
"license": "None",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/bradymadden97/freephite/tree/main/apps/cli",
"dependencies": {
"@octokit/core": "^5.0.0",
"@withgraphite/retype": "^0.3.11",
"@withgraphite/retyped-routes": "^0.3.1",
"chalk": "^4.1.2",
"fast-json-stable-hash": "^1.0.3",
"fs-extra": "^10.1.0",
"open": "^8.4.0",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"strip-ansi": "^6.0.1",
"tmp": "^0.2.1",
"yargs": "^17.5.1"
},
"pkg": {
"scripts": "dist/src/**/*.js",
"assets": [
"dist/src/commands/**/*",
"dist/.CHANGELOG.md",
"dist/src/lib/gt.fish"
],
"targets": [
"node16-macos",
"node16-win",
"node16-linux"
],
"outputPath": "pkg"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "bun run build",
"postinstall": "node scripts/node_version.js || node dist/scripts/node_version.js",
"lint": "eslint src --quiet --ext .ts --cache",
"check": "tsc --noEmit",
"build": "rm -rf dist/ && bun lint && tsc && cp scripts/node_version.js dist/scripts/node_version.js && cp src/lib/gt.fish dist/src/lib/gt.fish",
"build-pkg": "pkg dist/src/index.js -c package.json --public-packages \"*\"",
"cli": "node ./dist/src/index.js"
},
"files": [
"dist"
],
"bin": {
"fp": "dist/src/index.js",
"freephite": "dist/src/index.js"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/prettier": "^2",
"@types/prompts": "^2.4.3",
"@types/semver": "^7",
"@types/tmp": "^0.2.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nock": "^13.2.6",
"nyc": "^15.1.0",
"pinst": "^3.0.0",
"pkg": "^5.8.1",
"prettier": "^2.8.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}