-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "cli-learning-cards",
"version": "1.1.0",
"description": "Small CLI application for repeating terms with a card system.",
"type": "module",
"main": "dist/run.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run prettier && npm run lint && npm run build-only && npm run test",
"build-only": "tsc --pretty",
"lint": "eslint src/*.ts src/**/*.ts",
"prettier": "prettier 'src/{**/*,*}.{js,ts,tsx}' --write",
"test": "vitest run",
"test-debug": "vitest run --inspect-brk --testTimeout=0 --no-file-parallelism",
"start": "node dist/src/run.js",
"debug": "node --inspect dist/src/run.js"
},
"keywords": [
"cli",
"cards",
"learn"
],
"author": "Benjamin Gerber <benjamin.gerber@camptocamp.com>",
"license": "BSD-3-Clause",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"dependencies": {
"chalk": "^5.4.1",
"node-emoji": "^2.2.0"
}
}