-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.21 KB
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
72
73
74
75
76
77
78
79
80
81
{
"name": "eyedropper-polyfill",
"version": "1.0.0",
"author": "Ilya Medvedev <ilya@medvedev.im>",
"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"
],
"type": "module",
"files": [
"./dist",
"./package.json",
"./README.md"
],
"main": "./dist/eyedropper-polyfill.umd.cjs",
"module": "./dist/eyedropper-polyfill.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/eyedropper-polyfill.js",
"require": "./dist/eyedropper-polyfill.umd.cjs",
"default": "./dist/eyedropper-polyfill.js"
}
},
"sideEffects": true,
"scripts": {
"dev": "parcel ./demo/index.html",
"build": "NODE_ENV=production vite build",
"build:pages": "parcel build demo/index.html --target default --public-url .",
"release": "semantic-release",
"types": "tsc --noEmit",
"test:browser": "vitest --project=browser",
"test:unit": "vitest --project=unit"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.3",
"@semantic-release/release-notes-generator": "14.1.0",
"@tweakpane/core": "^2.0.5",
"@types/node": "^24.3.0",
"@vitest/browser": "^3.2.4",
"happy-dom": "^18.0.1",
"parcel": "^2.15.4",
"playwright": "^1.54.2",
"prettier": "^3.6.2",
"rollup-plugin-uglify": "^6.0.4",
"semantic-release": "^25.0.2",
"tweakpane": "^4.0.5",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"dependencies": {
"html2canvas-pro": "^1.6.6"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120
},
"volta": {
"node": "24.13.0",
"yarn": "1.22.19"
},
"packageManager": "yarn@4.12.0",
"targets": {
"default": {
"distDir": "pages"
}
}
}