-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ink-spreadsheet",
"version": "0.1.1",
"description": "An ink component to render a spreadsheet to the terminal",
"license": "MIT",
"author": "Nils Haberkamp",
"main": "index.js",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "vitest typecheck --run",
"typecheck:watch": "vitest typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:commit": "commitlint --from=529156b",
"lint": "eslint ./src ./tests --report-unused-disable-directives"
},
"keywords": [
"ink",
"react-ink"
],
"engines": {
"node": ">=16"
},
"peerDependencies": {
"ink": ">=4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/react": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vitest": "^0.2.6",
"ink": "^4.2.0",
"ink-testing-library": "^3.0.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vitest": "^0.33.0"
}
}