-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.23 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
{
"name": "@9am/img-halftone",
"version": "1.0.3",
"description": "A web component turns <img> into halftone.",
"keywords": [
"img",
"halftone",
"cmyk",
"web component",
"custom element",
"canvas"
],
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"main": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"default": "./dist/index.es.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"@9am/tsconfig": "^1.0.0",
"postcss": "^8.4.24",
"postcss-nesting": "^12.0.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-dts": "^3.0.3"
},
"author": {
"name": "9am",
"email": "tech.9am@gmail.com",
"url": "https://9am.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/9am/img-halftone"
},
"homepage": "https://github.com/9am/halftone#readme",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}