-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.74 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"keywords": [
"cli",
"peko"
],
"name": "pekora-cli",
"version": "0.0.15",
"description": "I want to go home faster",
"main": "./bundle/out.js",
"scripts": {
"dev": "ts-node ./src/cli.ts",
"build:open": "npm run clean && tsc",
"test:open": "npm run build:open && ava --verbose",
"bundle:open": "npm run build:open && pkg . --debug --out-dir ./exec/",
"bundleasdf": "rollup -c",
"build2": "npm run clean && tsc",
"clean": "rm -rf ./dist/ ./exec/ ./bundle/ ./fonts/",
"bundle": "npm run build2 && pkg . --debug --out-dir ./exec/",
"asdf": "pkg . --out-dir ./exec/",
"build": "npm run clean && tsc && npm run fonts:load && npm run esbuild && npm run chmod",
"build:frontline": "npx -p typescript tsc ./sample/frontline.ts -skipLibCheck",
"package": "pkg . --debug --output peko",
"chmod": "chmod +x ./bundle/out.js",
"test": "echo \"Error: no test specified\" && exit",
"local:container": "npm run build && npm i -g && peko -g container -o ./sample/di.container.js -s ./sample/**/*.js ./sample/test.js",
"local:frontline": "npm run build && npm i -g && peko -g frontline -o ./sample/frontline.js -s ./sample/**/*.js",
"local": "npm run build && npm i -g && peko -of ./sample/frontline.js -od ./sample/di.container.js -s ./sample/**/*.js ./sample/test.js",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"fonts:load": "mkdir ./fonts && cp node_modules/figlet/fonts/Standard.flf ./fonts/",
"esbuild": "esbuild ./dist/index.js --platform=node --bundle --outfile=./bundle/out.js"
},
"files": [
"fonts/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stories2/pekora-cli.git"
},
"bin": {
"peko": "./bundle/out.js"
},
"pkg": {
"options": [
"experimental-modules"
]
},
"type": "commonjs",
"author": "stories2@gapmoe.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/stories2/pekora-cli/issues"
},
"homepage": "https://github.com/stories2/pekora-cli#readme",
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.2",
"@types/node": "^18.7.23",
"@types/yargs": "^17.0.13",
"esbuild": "^0.15.10",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.20",
"pkg": "^4.5.1",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.34.0",
"ts-node": "^8.3.0",
"tslint": "^6.1.3",
"typescript": "^3.5.3"
},
"dependencies": {
"@babel/parser": "^7.21.4",
"@babel/types": "^7.21.4",
"chalk": "^5.0.1",
"clear": "^0.1.0",
"commander": "^9.4.1",
"figlet": "^1.5.2",
"inquirer": "^9.1.2",
"inquirer_config_builder": "^1.0.0",
"winston": "^3.8.2",
"yargs": "^17.6.0"
}
}