-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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
{
"name": "aribb24.js",
"version": "2.0.12",
"main": "./dist/aribb24.js",
"umd:main": "./dist/aribb24.umd.js",
"module": "./dist/aribb24.mjs",
"files": [
"dist",
"src",
"tsconfig.json"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"umd": "./dist/aribb24.umd.js",
"import": "./dist/es/index.mjs",
"require": "./dist/cjs/index.js"
},
"./glyph": {
"types": "./dist/types/runtime/common/additional-symbols-glyph.d.ts",
"import": "./dist/es/runtime/common/additional-symbols-glyph.mjs",
"require": "./dist/cjs/runtime/common/additional-symbols-glyph.js"
}
},
"bin": {
"ts2sup": "./dist/cjs/runtime/cli/bin/ts2sup.js",
"ts2vobsub": "./dist/cjs/runtime/cli/bin/ts2vobsub.js",
"ts2ass": "./dist/cjs/runtime/cli/bin/ts2ass.js",
"ts2imsc": "./dist/cjs/runtime/cli/bin/ts2imsc.js",
"ts2b36": "./dist/cjs/runtime/cli/bin/ts2b36.js"
},
"author": "monyone <monyone.teihen@gmail.com>",
"description": "an alternative implementation for b24.js",
"keywords": [
"html5",
"arib",
"b24",
"subtitle"
],
"repository": {
"type": "git",
"url": "https://github.com/monyone/aribb24.js"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"clean": "rimraf dist",
"build": "vite build",
"build:module": "vite build --config vite.config.module.mjs",
"build:tsc": "tsc",
"build:all": "rimraf dist && tsc && vite build && vite build --config vite.config.module.mjs",
"test": "vitest",
"test:browser": "vitest --config vitest.browser.config.mjs",
"prepublishOnly": "rimraf dist && tsc && vite build && vite build --config vite.config.module.mjs"
},
"devDependencies": {
"@napi-rs/canvas": "^0.1.65",
"@types/node": "^20.14.8",
"@vitest/browser": "^2.1.4",
"playwright": "^1.48.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vite": "^5.4.10",
"vitest": "^2.1.4"
}
}