-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 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
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
{
"name": "flow",
"version": "0.0.2",
"private": true,
"packageManager": "pnpm@10.24.0",
"description": "Cross-platform music player",
"license": "MIT",
"homepage": "https://github.com/nodefinity/flow#readme",
"repository": {
"type": "git",
"url": "https://github.com/nodefinity/flow.git"
},
"bugs": {
"url": "https://github.com/nodefinity/flow/issues"
},
"keywords": [
"music-player",
"music",
"player",
"track-player",
"track",
"react-native",
"cross-platform",
"typescript",
"turbo"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"mobile": "pnpm --filter mobile",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"create:package": "tsx scripts/createPackage.ts",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint-react/eslint-plugin": "^1.52.7",
"@types/semver": "7.7.0",
"eslint": "^9.34.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"husky": "^9.1.7",
"inquirer": "12.9.4",
"lint-staged": "^16.1.5",
"semver": "7.7.2",
"tsx": "4.20.5",
"turbo": "2.5.6",
"typescript": "^5.9.2"
},
"pnpm": {
"patchedDependencies": {
"react-native-track-player": "patches/react-native-track-player.patch"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm lint:fix"
]
}
}