-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "shiraha-colors",
"type": "module",
"version": "0.3.0",
"description": "Browser script to generate colors for Shiraha.",
"author": "藍+85CD",
"license": "WTFPL",
"homepage": "https://shiraha.js.org",
"repository": {
"type": "git",
"url": "https://github.com/importantimport/shiraha.git",
"directory": "packages/shiraha-colors"
},
"bugs": "https://github.com/importantimport/shiraha/issues",
"keywords": [
"browser",
"material",
"material-design",
"material3",
"material you",
"color extraction",
"theming"
],
"exports": {
".": "./dist/index.js",
"./nomodule": "./dist/nomodule.js",
"./package.json": "./package.json"
},
"main": "./dist/nomodule.js",
"module": "./dist/index.js",
"unpkg": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup",
"dev": "vite dev",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"devDependencies": {
"@material/material-color-utilities": "^0.2.7",
"mcu-extra": "^0.0.5"
}
}