-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "solid-js-modal",
"private": false,
"version": "1.1.1",
"description": "Simple \"dialog\" element based \"modal\" component for Solid-js",
"author": "funny-family <https://github.com/funny-family>",
"repository": {
"type": "git",
"url": "git+https://github.com/funny-family/solid-js-modal.git"
},
"homepage": "https://github.com/funny-family/solid-js-modal#readme",
"bugs": {
"url": "https://github.com/funny-family/solid-js-modal/issues"
},
"license": "MIT",
"keywords": [
"solid",
"solid js",
"solid-js",
"solid-js-modal",
"modal",
"modal window",
"dialog"
],
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/style.css": "./dist/style.css",
"./*": "./*"
},
"files": [
"dist"
],
"scripts": {
"dev": "concurrently \"rm -rf ./dist\" \"pnpm build:watch\"",
"build": "vite build",
"build:watch": "vite build --watch",
"release": "release-it",
"publish": "pnpm build && pnpm release"
},
"devDependencies": {
"@types/node": "^20.6.3",
"concurrently": "^8.2.1",
"release-it": "^16.1.5",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3",
"vite-plugin-solid": "^2.7.0"
},
"peerDependencies": {
"solid-js": "^1.7.12"
}
}