-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.43 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@aidenlx/folder-note-core",
"version": "1.3.6",
"description": "Provide core features and API for folder notes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"type": "module",
"packageManager": "yarn@3.1.1",
"scripts": {
"dev": "cross-env BUILD=dev node esbuild.config.mjs",
"check": "tsc --noEmit",
"prelib": "rm -rf lib && node ./scripts/cp-dts.mjs",
"lib": "tsc --project tsconfig-lib.json",
"build": "yarn run lib && cross-env BUILD=production node esbuild.config.mjs",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)'",
"eslint": "eslint . --ext .ts,.tsx --fix",
"release-ob": "release-it --config .release-it.ob.cjs",
"release-full": "release-it",
"release-lib": "release-it --config .release-it.lib.cjs"
},
"keywords": [],
"author": "AidenLx",
"license": "MIT",
"devDependencies": {
"@aidenlx/esbuild-plugin-obsidian": "^0.1.4",
"@aidenlx/eslint-config": "^0.1.2",
"@aidenlx/obsidian-plugin-bumper": "^0.1.3",
"@aidenlx/prettier-config": "^0.1.0",
"@aidenlx/release-it-config": "^0.1.11",
"@aidenlx/ts-config": "^0.1.2",
"@release-it/bumper": "^3.0.1",
"@release-it/conventional-changelog": "^4.1.0",
"@types/json-schema": "^7.0.9",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"assert-never": "^1.2.1",
"conventional-changelog-angular": "^5.0.13",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.14.23",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"json": "^11.0.0",
"loglevel": "^1.8.0",
"monkey-around": "^2.3.0",
"obsidian": "latest",
"path-browserify": "^1.0.1",
"prettier": "^2.5.1",
"release-it": "^14.12.4",
"semver": "^7.3.5",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"loglevel": "^1.8.0",
"obsidian": "latest"
},
"browser": {
"path": "path-browserify"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}