-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@replit/codemirror-lang-solidity",
"description": "Solidity language support for CM6",
"version": "6.0.2",
"author": {
"name": "Sergei Chestakov",
"email": "me@sergei.com"
},
"type": "module",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"sideEffects": false,
"license": "MIT",
"scripts": {
"dev": "vite ./dev",
"build": "cm-buildhelper src/index.ts",
"test": "cm-runtests",
"publish": "npm run build && npm publish"
},
"peerDependencies": {
"@codemirror/language": "^6.0.0"
},
"devDependencies": {
"@codemirror/buildhelper": "^0.1.16",
"@codemirror/commands": "^6.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.00.0",
"codemirror": "^6.0.0",
"vite": "^2.3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/replit/codemirror-lang-solidity.git"
},
"dependencies": {
"@lezer/highlight": "^1.2.0"
}
}