-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"name": "html-color-picker",
"version": "1.0.0",
"description": "HTML Color Picker",
"main": "main.js",
"type": "module",
"scripts": {
"setup": "npm ci",
"build": "rollup --config rollup.config.ts --configPlugin typescript --environment NODE_ENV:production",
"test": "vitest run",
"dev": "rollup --config rollup.config.ts --configPlugin typescript --watch --environment NODE_ENV:development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dli7319/html-color-picker.git"
},
"keywords": [],
"author": "David Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/dli7319/html-color-picker/issues"
},
"homepage": "https://github.com/dli7319/html-color-picker#readme",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@shoelace-style/shoelace": "^2.19.1",
"@types/color-convert": "^2.0.0",
"@types/node": "^22.13.0",
"@types/webpack": "^5.28.5",
"color-convert": "^2.0.1",
"eslint": "^9.35.0",
"jiti": "^2.5.1",
"jsdom": "^27.0.0",
"lit": "^3.2.1",
"rollup": "^4.59.0",
"rollup-plugin-lit-css": "^6.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vitest": "^3.2.4"
}
}