-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.82 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
{
"name": "lsh",
"version": "0.0.0",
"description": "extensible cli client",
"main": "src/app.js",
"bin": {
"lsh": "./dist/app.js"
},
"scripts": {
"compile-ts": "tsc -b",
"compile-nexe": "node build.js",
"build-bin": "npm run clean; npm run compile-ts; npm run compile-nexe",
"start": "./lsh",
"watch": "tsc --watch",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"clean": "rm -rf ./build; rm -rf ./bin; rm -rf ./dist"
},
"keywords": [
"cli",
"client"
],
"type": "module",
"author": "lefv",
"license": "ISC",
"dependencies": {
"@deck.gl/core": "^8.9.33",
"@inkjs/ui": "^1.0.0",
"@octokit/rest": "^20.1.0",
"@types/ink": "^2.0.3",
"@xstate/react": "^4.1.0",
"async": "^3.2.5",
"async-lock": "^1.4.0",
"axios": "^1.5.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"chokidar": "^3.6.0",
"commander": "^10.0.1",
"csv": "^6.3.5",
"dotenv": "^16.4.5",
"fprint": "^2.0.1",
"glob": "^10.3.12",
"gradstop": "^2.2.3",
"highlightjs": "^9.16.2",
"ink": "^4.4.1",
"ink-text-input": "^5.0.1",
"inquirer": "^9.2.12",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"mocha": "^10.3.0",
"ncc": "^0.3.6",
"nexe": "^4.0.0-rc.2",
"nodemon": "^3.0.1",
"npx": "^10.2.2",
"ora": "^8.0.1",
"path": "^0.12.7",
"react": "^18.2.0",
"repl": "^0.1.3",
"request": "^2.88.2",
"sendgrid": "^5.2.3",
"xstate": "^5.9.1",
"zapier-platform-core": "15.4.1",
"zx": "^7.2.3"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.24.1",
"@types/async-lock": "^1.4.2",
"@types/node": "^20.12.7",
"@types/react": "^18.2.73",
"@types/request": "^2.48.12",
"babel-jest": "^29.7.0",
"typescript": "^5.4.5"
}
}