-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "modaltic",
"version": "0.1.0",
"description": "Always rewriting the same code for modal. Let's try an UI library. That's give more control on the UI with prebuild tools.",
"author": "mdmahikaishar <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/mjs/index.js",
"scripts": {
"lint": "tsc --noEmit",
"build": "pnpm run build:cjs && pnpm run build:mjs && pnpm run build:css",
"build:cjs": "tsc --outDir ./dist/cjs --module commonjs",
"build:mjs": "tsc --outDir ./dist/mjs --module es6 --moduleResolution node",
"build:css": "sass ./src/styles.scss ./dist/styles.css"
},
"exports": {
".": [
{
"types": "./dist/cjs/index.d.ts",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
],
"./styles.css": "./dist/styles.css"
},
"files": [
"dist/cjs",
"dist/mjs",
"dist/styles.css"
],
"keywords": [
"modaltic",
"react-modal",
"modal",
"reactjs"
],
"dependencies": {
"framer-motion": "^10.17.9",
"react-hook-bag": "^0.1.0"
},
"peerDependencies": {
"react": "^18"
},
"devDependencies": {
"@changesets/cli": "^2",
"@types/node": "^20",
"@types/react": "^18",
"sass": "^1.69.7",
"tslib": "^2",
"typescript": "^5"
}
}