-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "@catppuccin/codemirror",
"version": "1.0.3",
"type": "module",
"license": "MIT",
"description": "Soothing pastel theme for CodeMirror",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/catppuccin/codemirror.git"
},
"bugs": {
"url": "https://github.com/catppuccin/codemirror/issues"
},
"sponsor": {
"url": "https://opencollective.com/catppuccin"
},
"keywords": [
"editor",
"code"
],
"author": {
"name": "Catppuccin Org",
"email": "releases@catppuccin.com",
"url": "https://catppuccin.com"
},
"scripts": {
"prepare": "pnpm run build",
"build": "cm-buildhelper src/catppuccin.ts",
"watch": "nodemon --watch src -e ts --exec 'pnpm build'",
"format": "prettier --write ."
},
"files": [
"dist"
],
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"dependencies": {
"@catppuccin/palette": "^1.7.1",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.15",
"@lezer/highlight": "^1.2.3"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.0",
"nodemon": "^3.1.14",
"prettier": "3.8.1"
},
"packageManager": "pnpm@10.33.0"
}