-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 992 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
39
40
41
42
43
{
"name": "@gratico/codemirror",
"version": "0.2.5",
"author": "Abhishiv Saxena<[email protected]>",
"license": "MIT",
"description": "Codemirror",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/gratico/codemirror"
},
"files": [
"./dist"
],
"devDependencies": {
"rollup": "^3.26.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"sass": "^1.63.6",
"typescript": "^4.9.5",
"vitest": "^0.28.5",
"vite-tsconfig-paths": "^4.2.0"
},
"scripts": {
"build": "make build",
"test": "npx vitest --run --passWithNoTests",
"coverage": "vitest run --coverage --run --passWithNoTests",
"typecheck": "npx tsc --noEmit"
},
"main": "./src/index.tsx",
"exports": {
".": {
"import": "./src/index.tsx"
}
},
"dependencies": {
"@codemirror/lang-javascript": "^6.1.9",
"codemirror": "^6.0.1"
},
"peerDependencies": {
"rocky7": "*"
}
}