-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
48
49
{
"name": "nova-actionlint",
"version": "1.1.1",
"description": "",
"main": "src/main.ts",
"author": "Johan Bergström <bugs@bergstroem.nu>",
"bugs": {
"url": "https://github.com/jbergstroem/nova-actionlint/issues"
},
"engines": {
"node": "=18",
"pnpm": ">=8.6"
},
"scripts": {
"build": "esbuild --bundle --format=cjs --outfile=actionlint.novaextension/Scripts/main.js src/main.ts"
},
"license": "MIT",
"devDependencies": {
"@types/nova-editor-node": "5.1.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"esbuild": "0.18.11",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-nova": "1.7.0",
"nova-extension-utils": "^1.4.0",
"prettier": "3.0.0",
"typescript": "5.1.6"
},
"eslintConfig": {
"env": {
"nova/nova": true
},
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"nova",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
]
},
"eslintIgnore": [
"actionlint.novaextension/Scripts/*"
]
}