-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
45
46
47
{
"name": "codemirror-extension-inline-suggestion",
"version": "0.0.3",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/saminzadeh/codemirror-extension-inline-suggestion.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx src",
"build": "tsc && vite build",
"prepublish": "npm run lint && npm run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.8.2",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
},
"peerDependencies": {
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.7.2"
},
"prettier": {
"singleQuote": true,
"semi": true,
"printWidth": 80,
"trailingComma": "es5"
}
}