-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "next-social-icons",
"version": "0.0.6",
"license": "MIT",
"description": "A Next.js-compatible social icons library based on `react-social-icons`.",
"keywords": [
"next",
"next.js",
"social icons",
"react"
],
"platform": "browser",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/components/*/index.js"
},
"scripts": {
"export": "tsmodule build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"pretest": "tsmodule build --runtime-only",
"test": "ava",
"prepublishOnly": "yarn test && yarn export"
},
"devDependencies": {
"@tsmodule/react": "^12.0.0",
"@tsmodule/tsmodule": "^41.26.0",
"@types/node": "^18.13.0",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.13",
"ava": "^5.2.0",
"cssnano": "^5.1.14",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"next": "^13.1.6",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.2.6",
"typescript": "^4.9.5"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}