-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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": "codemirror-wrapped-line-indent",
"version": "1.0.7",
"description": "A plugin for CodeMirror to handle wrapped line indentation",
"keywords": [
"codemirror",
"wrapped",
"indent"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/fauzi9331/codemirror-wrapped-line-indent"
},
"scripts": {
"dev": "vite",
"build-vite": "tsc && vite build",
"preview": "vite preview",
"build:cjs": "tsc --module commonjs --outDir ./dist && mv ./dist/index.js ./dist/index.cjs",
"build:esm": "tsc --module ES2020 --outDir ./dist",
"build": "npm run build:cjs && npm run build:esm",
"version": "npm version",
"publish": "npm publish"
},
"author": "Muhammad Iqbal Fauzi",
"license": "MIT",
"peerDependencies": {
"@codemirror/language": "^6.9.0",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.17.1"
},
"devDependencies": {
"@codemirror/commands": "^6.3.3",
"@codemirror/language": "^6.9.0",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.17.1",
"@replit/codemirror-indentation-markers": "^6.5.0",
"codemirror": "^6.0.1",
"typescript": "^5.2.2",
"vite": "^4.4.5"
}
}