-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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
{
"name": "@9am/before-after",
"version": "1.1.4",
"description": "A small Web Component shows a before-after comparison.",
"keywords": [
"web component",
"custom element",
"before",
"after",
"before-after",
"slide",
"comparison"
],
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.es.js",
"main": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"default": "./dist/index.min.js"
}
},
"scripts": {
"dev": "vite --open",
"build": "vite build",
"prettier": "prettier --check ."
},
"devDependencies": {
"postcss": "^8.4.32",
"postcss-nesting": "^12.0.2",
"prettier": "^2.8.8",
"vite": "^4.5.0",
"vite-plugin-banner": "^0.7.1"
},
"author": {
"name": "9am",
"email": "[email protected]",
"url": "https://9am.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/9am/before-after"
},
"homepage": "https://9am.github.io/before-after/",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}