CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json41 linesDownload Raw Back to search
1{2  "name": "@codemirror/search",3  "version": "6.7.0",4  "description": "Search functionality for the CodeMirror code editor",5  "scripts": {6    "test": "cm-runtests",7    "prepare": "cm-buildhelper src/search.ts"8  },9  "keywords": [10    "editor",11    "code"12  ],13  "author": {14    "name": "Marijn Haverbeke",15    "email": "marijn@haverbeke.berlin",16    "url": "http://marijnhaverbeke.nl"17  },18  "type": "module",19  "main": "dist/index.cjs",20  "exports": {21    "import": "./dist/index.js",22    "require": "./dist/index.cjs"23  },24  "types": "dist/index.d.ts",25  "module": "dist/index.js",26  "sideEffects": false,27  "license": "MIT",28  "dependencies": {29    "@codemirror/state": "^6.0.0",30    "@codemirror/view": "^6.37.0",31    "crelt": "^1.0.5"32  },33  "devDependencies": {34    "@codemirror/buildhelper": "^1.0.0"35  },36  "repository": {37    "type": "git",38    "url": "git+https://code.haverbeke.berlin/codemirror/search.git"39  }40}41 
basant307/AI_Governance_Project · CoolFace