This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "metadata",
"author": "MarginNote<https://github.com/marginnoteapp>",
"contributors": [
"ourongxing<https://github.com/ourongxing>"
],
"version": "0.9.5",
"license": "MIT",
"description": "Used to import document metadata from Zotero",
"scripts": {
"dev": "tsx ./build.ts",
"build": "NODE_ENV=production pnpm dev",
"build:iPad": "pnpm build && airdrop ./dist/*.mnaddon",
"lint:fix": "eslint . --fix --ext .ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"package.json": [
"tsx ./scripts/updateVersion.ts",
"git add README.md"
],
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --cache --fix",
"git add"
]
},
"keywords": [
"marginote",
"addon",
"typescript"
],
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@ourongxing/estrella": "^1.4.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.7.16",
"@types/semver": "^7.3.12",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"esbuild": "^0.15.7",
"esbuild-plugin-mxn-copy": "^1.0.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsx": "^3.9.0",
"typescript": "^4.8.3",
"unplugin-auto-import": "^0.11.2"
},
"dependencies": {
"marginnote": "0.9.15",
"query-string": "^7.1.1",
"semver": "^7.3.7"
}
}