-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.82 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": "file-order",
"version": "0.0.11",
"description": "Use number-prefixes in your file names to define a custom order, and use drag-and-drop in the file explorer to update that order",
"main": "lib/main.js",
"license": "MIT",
"scripts": {
"build": "obsidian-plugin build --with-stylesheet src/styles.css src/main.ts",
"dev": "obsidian-plugin dev --with-stylesheet src/styles.css src/main.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postversion": "node version-bump.mjs && yarn build",
"release": "publish-fast"
},
"devDependencies": {
"@lukasbach/eslint-config-deps": "^1.0.2",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"eslint": "^8.36.0",
"obsidian": "obsidianmd/obsidian-api",
"obsidian-plugin-cli": "^0.9.0",
"publish-fast": "^0.0.19",
"typescript": "^4.1.5"
},
"eslintConfig": {
"extends": "@lukasbach/base/react",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"no-new": "off",
"@typescript-eslint/no-use-before-define": "off",
"import/no-cycle": "off",
"react/require-default-props": "off",
"react/function-component-definition": "off",
"react/jsx-props-no-spreading": "off",
"jsx-a11y/label-has-associated-control": "off",
"no-plusplus": "off",
"import/extensions": [
"error",
"never"
]
},
"ignorePatterns": [
"lib",
"*.js"
]
},
"volta": {
"node": "18.15.0",
"yarn": "3.5.0"
},
"dependencies": {
"builtin-modules": "^3.3.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0"
},
"publish": {
"preScripts": "lint,build",
"skipPublish": true,
"releaseAssets": "dist/*",
"noVersionPrefix": true
}
}