-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 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
{
"name": "@spotify-confidence/quickstart",
"version": "1.0.1",
"description": "Get started with Confidence in minutes.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"confidence-quickstart": "dist/bin/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"try": "NODE_ENV=development node --import tsx bin/cli.ts",
"test": "vitest run",
"test:e2e": "pnpm build && vitest run --config vitest.config.e2e.ts",
"test:watch": "vitest",
"lint": "pnpm lint:src && pnpm lint:scripts && pnpm format:check",
"lint:src": "eslint .",
"lint:scripts": "eslint --config scripts/eslint.config.js scripts/",
"lint:fix": "eslint --fix . && prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"qa": "pnpm typecheck && pnpm lint && pnpm test",
"clear": "./scripts/clean-dev-env.sh",
"prepare": "husky"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@nanostores/react": "^1.1.0",
"ink": "^6.8.0",
"nanostores": "^1.4.0",
"react": "^19.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.28.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.0",
"@types/react": "^19.1.0",
"@types/yargs": "^17.0.33",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^17.0.8",
"msw": "^2.14.6",
"node-pty": "1.2.0-beta.14",
"prettier": "^3.5.3",
"tsdown": "^0.12.5",
"tsx": "^4.19.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.1"
},
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/spotify/confidence-cli.git"
},
"packageManager": "pnpm@10.12.1"
}