-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.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
{
"name": "caption-converter",
"version": "0.3.2",
"description": "WebVTTをいい感じにあれやこれやして使い勝手を良くするWebアプリ",
"main": "dist/index.js",
"scripts": {
"preprepareassets": "npx rimraf dist",
"prepareassets": "npx cpx 'src/*.{ico,png,html,css}' dist/",
"prestart": "npm run prepareassets",
"start": "npx esbuild src/index.ts --bundle --sourcemap --outdir=src --servedir=src",
"prebuild": "npm run prepareassets",
"build": "npx esbuild src/index.ts --bundle --minify --outdir=dist",
"build:gh-pages": "npm run build"
},
"dependencies": {
"webvtt-parser": "*"
},
"devDependencies": {
"@types/node": "*",
"cpx": "*",
"esbuild": "*",
"rimraf": "*",
"typescript": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ver-1000000/caption-converter.git"
},
"author": "@Ver1000000000",
"license": "MIT",
"bugs": {
"url": "https://github.com/ver-1000000/caption-converter/issues"
},
"homepage": "https://github.com/ver-1000000/caption-converter"
}