-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 906 Bytes
/
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
{
"name": "@codewars/codemirror-lambda-calculus",
"version": "0.3.4",
"type": "module",
"description": "Lambda Calculus mode for CodeMirror",
"main": "lambdacalc.js",
"files": [
"lambdacalc.js"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codewars/codemirror-lambda-calculus.git"
},
"keywords": [
"codemirror",
"lambda-calculus"
],
"author": "Kacarott",
"license": "MIT",
"bugs": {
"url": "https://github.com/codewars/codemirror-lambda-calculus/issues"
},
"homepage": "https://github.com/codewars/codemirror-lambda-calculus#readme",
"devDependencies": {
"postcss-nesting": "^10.1.2",
"vite": "^2.8.1",
"vite-plugin-windicss": "^1.7.0",
"windicss": "^3.4.3"
},
"peerDependencies": {
"codemirror": "5.x"
}
}