-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 1.92 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
{
"name": "@iptv/playlist",
"description": "An extremely fast M3U playlist parser and generator for Node and the browser.",
"version": "1.1.0",
"license": "MIT",
"author": {
"name": "ekto",
"url": "https://ekto.tv/"
},
"main": "./dist/playlist.umd.cjs",
"module": "./dist/playlist.js",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/playlist.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/playlist.umd.cjs"
}
}
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"files": [
"dist"
],
"keywords": [
"playlist",
"m3u",
"m3u8",
"iptv",
"parser",
"generator"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:ci": "vitest --run --coverage.enabled --coverage.reporter='text-summary'",
"benchmark": "vitest bench",
"benny": "ts-node --esm ./benchmark/benchmark.ts",
"nanobench": "ts-node --esm ./benchmark/nanobench.ts",
"changeset": "changeset",
"prerelease": "pnpm run build && pnpm run test:ci",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/argparse": "^2.0.14",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^0.34.6",
"argparse": "^2.0.1",
"benny": "^3.7.1",
"iptv-playlist-generator": "^0.1.5",
"iptv-playlist-parser": "^0.13.0",
"m3u-parser-generator": "^1.4.1",
"nanobench": "^3.0.0",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"repository": {
"type": "git",
"url": "https://github.com/ektotv/playlist.git"
},
"volta": {
"node": "20.3.1"
}
}