-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·43 lines (43 loc) · 997 Bytes
/
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
{
"name": "@alephmatic/aleph0",
"version": "0.0.2",
"private": false,
"main": "index.js",
"type": "module",
"bin": "./dist/index.js",
"scripts": {
"watch": "tsup --watch",
"start": "node dist/index.js",
"build": "tsup",
"test:e2e-init": "rm -rf ./tests/temp && cp -r ./examples/next ./tests/temp && cd tests/temp/ && npm run dev",
"test:e2e": "DEBUG=1 PLAYWRIGHT_TEST=true playwright test"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"commander": "^11.1.0",
"consola": "^3.2.3",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"openai": "^4.24.0",
"ora": "^7.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.2",
"execa": "^8.0.1",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"cli",
"aleph",
"nextjs",
"ai"
]
}