-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cm6-themes",
"description": "Theme packages for the CodeMirror code editor",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "rimraf ./packages/*/dist ./example/dist",
"watch": "node scripts/watch.js",
"example": "rollup -c rollup.example.config.mjs",
"example:watch": "rollup -w -c rollup.example.config.mjs",
"prepare": "npm run -w '*' prepare"
},
"keywords": [
"editor",
"code",
"codemirror"
],
"author": {
"name": "Takuya Matsuyama",
"email": "[email protected]",
"url": "https://www.craftz.dog/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/craftzdog/cm6-themes.git"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.17.2",
"rollup-plugin-dev": "^2.0.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"bracketSpacing": true,
"endOfLine": "lf",
"semi": false,
"tabWidth": 2,
"trailingComma": "none"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/language": "^6.10.1",
"@codemirror/language-data": "^6.5.1",
"@codemirror/legacy-modes": "^6.4.0",
"@lezer/markdown": "^1.3.0",
"codemirror": "^6.0.1"
}
}