-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "@preprio/prepr-nextjs",
"version": "1.0.0-beta.14",
"description": "A next.js package with code snippets to use with Prepr",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./components": {
"types": "./dist/components.d.ts",
"import": "./dist/components.js",
"require": "./dist/components.js"
},
"./dist/components.css": {
"import": "./dist/components.css",
"require": "./dist/components.css"
},
"./dist/main.css": {
"import": "./dist/main.css",
"require": "./dist/main.css"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.3.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@headlessui/react": "^2.1.8",
"classnames": "^2.5.1",
"micromatch": "^4.0.8",
"next": "^14.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"rollup": "^4.22.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/preprio/prepr-nextjs.git"
},
"keywords": [
"prepr",
"nextjs"
],
"bugs": {
"url": "https://github.com/preprio/prepr-nextjs/issues"
},
"homepage": "https://github.com/preprio/prepr-nextjs#readme"
}