-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "liricle",
"version": "4.2.0",
"description": "Lyrics Synchronizer",
"type": "module",
"main": "dist/liricle.js",
"module": "dist/esm/liricle.mjs",
"types": "dist/liricle.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist && rollup -c && rimraf dist/types"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/liricle.mjs",
"require": "./dist/cjs/liricle.cjs",
"types": "./dist/liricle.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcanam/liricle.git"
},
"author": "mcanam",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcanam/liricle/issues"
},
"homepage": "https://github.com/mcanam/liricle#readme",
"keywords": [
"lyrics",
"lrc"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.3",
"tslib": "^2.6.3"
}
}