-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.18 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
{
"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; pnpm run build:css",
"build": "cm-buildhelper src/catppuccin.ts",
"build:css": "tsx src/css.ts",
"build:watch": "nodemon --watch src -e ts --exec 'pnpm prepare'"
},
"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",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-yaml": "^6.1.3",
"@replit/codemirror-lang-csharp": "^6.2.0",
"@replit/codemirror-lang-nix": "^6.0.1",
"@types/clean-css": "^4.2.11",
"@types/node": "^25.5.2",
"codemirror": "^6.0.2",
"nodemon": "^3.1.14",
"postcss": "^8.5.9",
"style-mod": "^4.1.3",
"tsx": "^4.21.0"
},
"packageManager": "pnpm@10.30.1"
}