-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@jurjanpaul/codemirror6-parinfer",
"version": "0.1.3",
"description": "Parinfer extension for CodeMirror 6",
"license": "MIT",
"type": "module",
"keywords": [
"parinfer",
"codemirror",
"codemirror6"
],
"author": "Jurjan-Paul Medema",
"repository": {
"type": "git",
"url": "https://github.com/jurjanpaul/codemirror6-parinfer.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/*"
],
"module": "dist/cm6-parinfer.js",
"types": "dist/cm6-parinfer.d.ts",
"dependencies": {
"@codemirror/commands": "6.8.0",
"@codemirror/lint": "6.8.4",
"@codemirror/merge": "6.7.4",
"@codemirror/state": "6.5.2",
"@codemirror/view": "6.35.0",
"@nextjournal/lang-clojure": "1.0.0",
"codemirror": "6.0.1",
"parinfer": "3.13.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.10.2",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"scripts": {
"clean": "rimraf dist",
"_build": "tsc",
"build": "rollup -c",
"prepublishOnly": "npm install && npm run build"
}
}