-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "easy-audio-player",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "A simple audio player",
"repository": {
"type": "git",
"url": "https://github.com/HEKEH/easy-audio-player"
},
"keywords": [
"audio",
"player",
"web",
"vue",
"react"
],
"engines": {
"node": ">= 14",
"pnpm": ">= 6"
},
"scripts": {
"dev": "cross-env ts-node scripts/dev-start.ts",
"build": "cross-env turbo build --filter=!easy-audio-player-demo",
"publish": "ts-node scripts/publish.ts",
"lint": "eslint",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.9.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.81.0",
"ts-node": "^10.9.2",
"turbo": "^2.3.0",
"typescript": "~5.5.0",
"vite": "^5.4.10",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.3.0"
},
"lint-staged": {
"{packages,apps}/**/*.{js,ts,tsx}": [
"eslint --fix --color"
]
}
}