-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "@ensembleui/cli",
"version": "0.1.16",
"description": "Ensemble CLI for logging in, initializing, and pushing/pulling app definitions to the cloud.",
"bin": {
"ensemble": "dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/inject-env.mjs && chmod +x dist/index.js",
"inject-env": "node scripts/inject-env.mjs",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky install"
},
"keywords": [
"ensemble",
"cli"
],
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"type": "commonjs",
"dependencies": {
"commander": "^12.1.0",
"picocolors": "^1.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"dotenv": "^17.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
}
}