forked from magic-akari/lrc-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.53 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
{
"name": "lrc-maker",
"version": "5.1.2",
"description": "歌词滚动姬|可能是你所能见到的最好用的歌词制作工具",
"repository": "https://github.com/magic-akari/lrc-maker.git",
"author": "阿卡琳 <[email protected]>",
"license": "MIT",
"keywords": [
"lrc",
"lrc maker",
"lyric",
"lyric maker"
],
"bugs": "https://github.com/magic-akari/lrc-maker/issues",
"homepage": "https://github.com/magic-akari/lrc-maker#readme",
"files": [
"src",
"build"
],
"scripts": {
"clean": "rm -rf ./build/* ./build.es6/*",
"prestart": "npm run ver",
"start": "npm run html && npm run esm:watch",
"prebuild": "npm run ver",
"build": "npm run css && npm run nomodule && npm run esm && npm run html",
"ver": "ts-node -P scripts/tsconfig.json scripts/generate.version.ts | tee src/version.d.ts > src/@worker/version.d.ts",
"esm": "tsc -b",
"preesm:watch": "npm run ver",
"esm:watch": "tsc -b -w",
"es6": "tsc -b tsconfig.es6.json",
"nomodule": "npm run es6 && webpack -p",
"css": "postcss src/index.css -m -d build",
"prehtml": "mkdir -p build && npm run manifest && npm run svg",
"html": "ts-node -P scripts/tsconfig.json scripts/index.html.tsx > build/index.html",
"manifest": "cp -r ./manifest/* ./build",
"svg": "cp -r ./svg ./build",
"prettier": "prettier --write \"{.,src/**,scripts}/*.{ts,tsx,js,es6,css,json,md}\"",
"listdiff": "prettier -l \"{.,src/**,scripts}/*.{ts,tsx,js,es6,css,json,md}\"",
"lint": "tslint \"{src,scripts}/**/*.{ts,tsx,es6}\""
},
"dependencies": {
"@lrc-maker/lrc-parser": "^0.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"toggle-switch-css": "^1.0.1"
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/prettier": "^1.16.3",
"@types/react": "^16.8.16",
"@types/react-dom": "^16.8.4",
"autoprefixer": "^9.5.1",
"core-js": "^3.0.1",
"cssnano": "^4.1.10",
"glob": "^7.1.3",
"postcss": "^7.0.15",
"postcss-cli": "^6.1.2",
"postcss-custom-properties": "^8.0.10",
"postcss-import": "^12.0.1",
"prettier": "^1.17.0",
"source-map-loader": "^0.2.4",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}