-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 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
73
74
75
76
77
{
"name": "tinky-link",
"version": "1.0.0",
"description": "Terminal-safe OSC 8 Link component for Tinky applications",
"keywords": [
"react",
"cli",
"terminal",
"tinky",
"link",
"hyperlink",
"osc8"
],
"homepage": "https://github.com/ByteLandTechnology/tinky-link#readme",
"bugs": {
"url": "https://github.com/ByteLandTechnology/tinky-link/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/tinky-link.git"
},
"license": "MIT",
"author": {
"name": "ByteLand Technology Limited"
},
"type": "module",
"main": "./lib/index.js",
"scripts": {
"test": "vitest run --coverage",
"build": "tsc && npm run docs",
"lint": "eslint src tests",
"prepublish": "npm run build",
"prepare": "husky",
"docs": "typedoc --plugin typedoc-plugin-markdown --disableSources --out docs/api && prettier --write docs/api"
},
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts",
"dependencies": {
"tinky-termcap": "^1.0.3",
"tinky-theme": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitest/coverage-v8": "^4.0.18",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tinky-test": "^1.1.0",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md,yaml,yml}": "prettier --write"
}
}