-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.28 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.28 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "codemirror-elements",
"version": "0.0.10",
"description": "A set of CodeMirror custom HTML elements",
"type": "module",
"main": "index.js",
"scripts": {
"build": "wireit",
"test": "wireit",
"start:demo": "wireit",
"format": "npm run format:fix",
"format:check": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --check",
"format:fix": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinfagnani/codemirror-elements.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinfagnani/codemirror-elements/issues"
},
"homepage": "https://github.com/justinfagnani/codemirror-elements#readme",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"index.d.ts.map",
"/lib/"
],
"devDependencies": {
"@types/chai": "^5.2.0",
"@types/mocha": "^10.0.10",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.20.0",
"@web/test-runner-playwright": "^0.11.0",
"chai": "^5.0.0-alpha.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "~5.8.2",
"wireit": "^0.14.11"
},
"dependencies": {
"@codemirror/autocomplete": "^6.4.0",
"@codemirror/commands": "^6.2.0",
"@codemirror/lang-css": "^6.0.2",
"@codemirror/lang-html": "^6.4.2",
"@codemirror/lang-javascript": "^6.1.3",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.4.0",
"@codemirror/lint": "^6.1.0",
"@codemirror/search": "^6.2.3",
"@codemirror/state": "^6.2.0",
"@codemirror/theme-one-dark": "^6.1.0",
"@codemirror/view": "^6.7.3",
"@lit/context": "^1.1.4",
"lit": "^3.2.1"
},
"wireit": {
"build": {
"command": "tsc --pretty",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"index.{js|js.map|d.ts|d.ts.map}",
"/lib/",
".tsbuildinfo"
],
"clean": "if-file-deleted"
},
"test": {
"command": "wtr",
"dependencies": [
"build"
],
"files": [],
"output": []
},
"start:demo": {
"command": "wds --node-resolve",
"service": true,
"dependencies": [
"build"
]
}
}
}