-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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": "eyedropper-polyfill",
"version": "1.0.0",
"author": "Ilya Medvedev <[email protected]>",
"description": "EyeDropper API Polyfill",
"repository": "https://github.com/iam-medvedev/eyedropper-polyfill.git",
"homepage": "https://github.com/iam-medvedev/eyedropper-polyfill#readme",
"bugs": "https://github.com/iam-medvedev/eyedropper-polyfill/issues",
"license": "MIT",
"keywords": [
"eyedropper",
"polyfill",
"colorpicker"
],
"files": [
"./dist",
"./package.json",
"./README.md"
],
"main": "./dist/eyedropper-polyfill.umd.js",
"module": "./dist/eyedropper-polyfill.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "parcel ./demo/index.html",
"build": "NODE_ENV=production vite build",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "10.0.1",
"@semantic-release/github": "9.0.4",
"@semantic-release/npm": "10.0.4",
"@semantic-release/release-notes-generator": "11.0.4",
"@types/node": "^20.4.9",
"parcel": "^2.9.3",
"prettier": "^3.0.1",
"process": "^0.11.10",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^21.0.7",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.1"
},
"dependencies": {
"html2canvas": "^1.4.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
},
"volta": {
"node": "20.5.1",
"yarn": "1.22.19"
},
"packageManager": "[email protected]"
}