-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "@steinjun0/nextjs-svg-embedder",
"version": "2.0.0",
"description": "Embedding SVGs in Next.js Server Side Rendered Pages",
"keywords": [
"nextjs",
"svg",
"embed",
"embedder",
"server side rendering",
"ssr",
"app router"
],
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json --declaration --declarationDir dist/types && rollup -c",
"rollup": "rollup -c",
"tsc": "tsc -p tsconfig.json --declaration --declarationDir dist"
},
"author": "steinjun0",
"license": "ISC",
"peerDependencies": {
"next": "^13.0.0",
"react": "^16.8 || ^17 || ^18",
"tslib": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "20.4.3",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"builtin-modules": "^3.3.0",
"react": "18.2.0",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.6.0",
"typescript": "5.1.6"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}