-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "song-viz",
"version": "1.1.0",
"author": "Devesh",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/d-e-v-esh/song-viz"
},
"homepage": "https://github.com/d-e-v-esh/song-viz/blob/master/README.md",
"source": "src/index.js",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"keywords": [
"visualizer",
"visualize",
"react",
"music",
"audio",
"player",
"song",
"visualise",
"viz",
"visualiser"
],
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "husky install",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^3.0.1",
"eslint": "^8.25.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.6.6",
"vite-plugin-linter": "^2.0.2",
"vite-tsconfig-paths": "^4.0.5"
},
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn format"
]
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"dependencies": {
"framer-motion": "^9.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}