-
Notifications
You must be signed in to change notification settings - Fork 834
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "@replexica/cli",
"version": "0.40.1",
"description": "Replexica CLI",
"private": false,
"type": "module",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"replexica": "./build/index.js",
"dev": "tsup --watch",
"build": "tsc --noEmit && tsup",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@inquirer/prompts": "^5.1.2",
"@paralleldrive/cuid2": "^2.2.2",
"@replexica/sdk": "workspace:*",
"@replexica/spec": "workspace:*",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"flat": "^6.0.1",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"ini": "^4.1.3",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-front-matter": "^0.2.4",
"object-hash": "^3.0.0",
"open": "^10.1.0",
"ora": "^8.0.1",
"p-limit": "^6.1.0",
"properties-parser": "^0.6.0",
"slugify": "^1.6.6",
"typescript": "^5.4.5",
"vitest": "^2.0.0",
"xml2js": "^0.6.2",
"yaml": "^2.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/ini": "^4.1.1",
"@types/lodash": "^4.17.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.14.10",
"@types/object-hash": "^3.0.6",
"@types/properties-parser": "^0.3.3",
"@types/xml2js": "^0.4.14",
"tsup": "^8.1.0"
}
}