-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "clrc",
"version": "3.1.4",
"description": "Parser for LRC and enhanced LRC.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mebtte/clrc.git"
},
"bugs": {
"url": "https://github.com/mebtte/clrc/issues"
},
"homepage": "https://github.com/mebtte/clrc#readme",
"keywords": [
"lrc",
"parser",
"typescript"
],
"author": {
"name": "mebtte",
"email": "hi@mebtte.com",
"url": "https://mebtte.com"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.8",
"@types/node": "^18.15.12",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.1",
"jest": "^29.7.0",
"lint-staged": "^13.0.3",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.5.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"scripts": {
"test": "jest",
"dev": "rimraf dist && rollup -w --bundleConfigAsCjs --config rollup.config.js",
"build": "rimraf dist && rollup --bundleConfigAsCjs --config rollup.config.js",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"files": [
"dist"
]
}