-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ink-tab",
"type": "module",
"version": "5.1.0",
"description": "Tab component for Ink",
"main": "lib/index.js",
"exports": "./lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"check-types": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "yarn rimraf lib && yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1",
"demo": "yarn build && node demo/clear-screen.js && babel demo/index.jsx > demo/index.compiled.js && node demo/index.compiled.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdeniau/ink-tab.git"
},
"keywords": [
"Ink",
"tab"
],
"author": "Julien Deniau",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdeniau/ink-tab/issues"
},
"homepage": "https://github.com/jdeniau/ink-tab#readme",
"peerDependencies": {
"@types/react": "^18.0.0",
"ink": "^4.0.0 || ^5.0.0",
"react": "^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^3.1.0",
"ink": "^5.0.0",
"lint-staged": "^9.5.0",
"prettier": "^2.8.8",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"rimraf": "^3.0.0",
"svg-term-cli": "^2.1.1",
"typescript": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx|ts|tsx|json|md)": [
"prettier --write",
"git add"
]
}
}