-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "thememirror",
"version": "2.0.1",
"description": "Beautiful themes for CodeMirror",
"license": "MIT",
"repository": "vadimdemedes/thememirror",
"author": {
"name": "vdemedes",
"email": "vadimdemedes@hey.com",
"url": "https://vadimdemedes.com"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"dev": "tsc --watch",
"test": "prettier --check source && xo"
},
"files": [
"dist"
],
"keywords": [
"codemirror",
"theme",
"color scheme"
],
"devDependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"@sindresorhus/tsconfig": "^3.0.0",
"@vdemedes/prettier-config": "^2.0.1",
"prettier": "^2.6.2",
"typescript": "^4.7.2",
"xo": "^0.49.0"
},
"peerDependencies": {
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0"
},
"prettier": "@vdemedes/prettier-config",
"xo": {
"prettier": true,
"rules": {
"unicorn/no-abusive-eslint-disable": "off"
}
}
}