This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nova-elixir",
"version": "0.1.0",
"description": "Provides syntax highlighting and formatting for Elixir.",
"main": "src/index.t",
"author": "Hans Hoffman",
"license": "MIT",
"repository": "git@github.com:hansjhoffman/nova-elixir.git",
"bugs": {
"url": "https://github.com/hansjhoffman/nova-elixir/issues"
},
"homepage": "https://github.com/hansjhoffman/nova-elixir#readme",
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"build": "make build",
"compile": "make compile",
"format": "make format",
"format:ts": "make format-ts",
"format:xml": "make format-xml",
"lint": "make lint",
"lint:fix": "make lint-fix",
"prepare": "is-ci || husky install",
"run": "make watch"
},
"dependencies": {
"fp-ts": "^2.11.1",
"io-ts": "^2.2.16",
"monocle-ts": "^2.3.10",
"ts-pattern": "^3.2.4"
},
"devDependencies": {
"@prettier/plugin-xml": "^1.0.2",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/nova-editor-node": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5",
"watch": "^1.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"elixir.novaextension/**/*.xml": [
"prettier --write"
]
},
"resolutions": {
"tslib": "^2.1.0"
}
}