generated from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.11 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": "aplayer-react",
"version": "0.0.0",
"description": "The missing APlayer for React applications",
"keywords": [
"aplayer",
"react",
"music",
"player"
],
"homepage": "https://aplayer-react.js.org",
"repository": {
"type": "git",
"url": "https://github.com/SevenOutman/aplayer-react"
},
"license": "MIT",
"author": {
"name": "Doma",
"email": "[email protected]",
"url": "https://doma.land"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./dist/index.css": {
"require": "./dist/index.css",
"import": "./dist/index.css"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts",
"dev": "vite",
"format": "prettier --write .",
"prepublishOnly": "pnpm run build",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --passWithNoTests --coverage"
},
"dependencies": {
"clsx": "^1.2.1",
"fast-average-color": "^9.3.0",
"use-sync-external-store": "^1.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/use-sync-external-store": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.26.3",
"esbuild-plugin-svgr": "^1.0.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^8.1.0",
"postcss": "^8.4.22",
"prettier": "2.5.1",
"prettier-plugin-packagejson": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "6.5.0",
"typescript": "4.5.4",
"vite": "^3.2.5",
"vite-plugin-svgr": "^2.2.2",
"vitest": "^0.26.3"
},
"peerDependencies": {
"react": "^18.2.0"
},
"publishConfig": {
"access": "public"
}
}