forked from catppuccin/palette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1008 Bytes
/
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
{
"name": "@catppuccin/palette",
"version": "0.1.5",
"description": "Soothing pastel themes for the high-spirited!",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./style": "./css/catppuccin.css"
},
"scripts": {
"test": "ava",
"build": "node esbuild.js",
"prepublishOnly": "npm run build"
},
"files": [
"css/",
"dist/index.cjs",
"dist/index.mjs",
"index.d.ts"
],
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/catppuccin/palette.git"
},
"keywords": [
"pastel-colors",
"catppuccin",
"colors",
"theme",
"palette",
"soothing"
],
"publishConfig": {
"access": "public"
},
"author": "Catppuccin Org",
"license": "MIT",
"bugs": {
"url": "https://github.com/catppuccin/palette/issues"
},
"homepage": "https://github.com/catppuccin/palette#readme",
"devDependencies": {
"ava": "^4.2.0",
"esbuild": "^0.14.42"
}
}