-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.66 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.66 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
{
"name": "fmp4-concat",
"version": "0.0.2",
"private": false,
"description": "A browser library for concatenating multiple FMP4 streams with timeline adjustment",
"author": "Suemor",
"license": "MIT",
"keywords": [
"fmp4",
"mp4",
"concat",
"stream",
"timeline",
"tfdt",
"hls",
"browser",
"web"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"browser": "./dist/index.mjs",
"exports": {
".": {
"browser": "./dist/index.mjs",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18.0.0"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist",
"readme.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin swc3 --bundleConfigAsCjs",
"dev": "rollup -c rollup.config.ts --configPlugin swc3 --bundleConfigAsCjs --watch",
"type-check": "tsc --noEmit",
"push": "npm run build && npm publish"
},
"devDependencies": {
"@suemor/prettier-config": "0.0.3",
"@types/node": "^24.3.0",
"prettier": "^3.6.2",
"rollup": "^4.40.0",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-swc3": "^0.12.1",
"rollup-preserve-directives": "^1.1.3",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}