-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.6 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
{
"name": "slick-modal",
"description": "Simple modal manager for React that does the trick.",
"keywords": [
"modal",
"popup",
"react"
],
"license": "MIT",
"version": "0.0.3",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/plrs9816/slick-modal.git"
},
"homepage": "https://github.com/plrs9816/slick-modal",
"author": "plrs9816",
"files": [
"dist",
"src"
],
"source": "src/index.ts",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pnpm build:swc && pnpm types",
"build:swc": "swc src -d dist --copy-files",
"dev": "pnpm build:swc -w",
"types": "tsc --emitDeclarationOnly",
"lint": "TIMING=1 eslint \"src/**/*.{ts,tsx,js,jsx}\" --fix",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@nanostores/react": "^0.7.1",
"nanostores": "^0.9.3"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.66",
"@types/node": "18.15.7",
"@types/react": "18.0.29",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.0.2"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}