-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.35 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
{
"name": "nova-swiftformat",
"version": "0.0.0",
"packageManager": "yarn@3.6.3",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/nova-editor-node": "^5.1.0",
"prettier": "^3.0.3",
"rollup": "^3.29.2",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.2.2"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/PadraigK/swiftformat-nova.git"
},
"author": "Pádraig Ó Cinnéide",
"license": "MIT",
"bugs": {
"url": "https://github.com/PadraigK/swiftformat-nova/issues"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"test": "jest",
"lint": "concurrently 'yarn:lint:*'",
"lint:eslint": "eslint --ignore-path .lintignore \"**/*.{ts,js}\"",
"lint:prettier": "prettier --ignore-path .lintignore --check \"**/*.{ts,js,json,md,yml}\"",
"lint:json": "find . -name node_modules -prune -false -o -type f -name '*.json' -exec node -e 'require(\"{}\")' \\;",
"fix": "concurrently 'yarn:fix:*'",
"fix:eslint": "eslint --fix --ignore-path .lintignore \"**/*.{ts,js}\"",
"fix:prettier": "prettier --ignore-path .lintignore --write \"**/*.{ts,js,json,md,yml}\"",
"watch": "onchange -i \"src/**\" \"rollup.*.js\" -- npm run build"
},
"resolutions": {
"tslib": "^2.6.2"
}
}