-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.24 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
87
88
89
90
91
92
{
"name": "captioneer",
"version": "1.1.0",
"type": "module",
"description": "YouTube Video Captions Library",
"keywords": [
"youtube",
"transcript",
"captions",
"subtitles",
"video"
],
"author": "ItsCurstin",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ItsCurstin/captioneer.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "NODE_ENV=production tsup",
"dev": "NODE_ENV=development tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "biome format . --write",
"lint": "biome lint .",
"check": "biome check .",
"typecheck": "tsc --noEmit",
"prepare": "husky || true",
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit",
"commit": "git-cz",
"release": "semantic-release",
"release:preview": "semantic-release --dry-run --no-ci --branches release/*",
"prepublishOnly": "pnpm run typecheck && pnpm run test && pnpm run check && pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.5",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"lint-staged": {
"*.ts": [
"biome check --apply",
"biome format --write",
"vitest related --run"
]
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"pnpm": ">=8.0.0",
"yarn": ">=3.0.0"
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
}
}