-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 3.22 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
{
"name": "obsidian-prj-plugin",
"version": "0.6.27",
"description": "Prj Plugin - Project, Document, and Task Management",
"main": "main.js",
"scripts": {
"gen:imports": "node scripts/importer.js",
"dev": "node scripts/watch-input.js",
"build:dev": "node esbuild.config.mjs development && npm run compile:sass && node scripts/copy-plugin-files.mjs dev",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && npm run compile:sass && node scripts/copy-plugin-files.mjs release",
"build:check": "tsc -noEmit -skipLibCheck",
"build:action": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && npm run compile:sass",
"version:patch": "\"node scripts/bump-version.mjs patch\" && npm run postversion",
"version:minor": "\"node scripts/bump-version.mjs minor\" && npm run postversion",
"version:major": "\"node scripts/bump-version.mjs major\" && npm run postversion",
"postversion": "npm run build && node scripts/copy-plugin-files.mjs release && git add manifest.json versions.json package.json",
"compile:sass": "sass --no-source-map src/styles/main.scss build/styles.css",
"watch:sass": "sass --watch --no-source-map src/styles/main.scss:build/styles.css",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"format": "prettier --write .",
"docs": "typedoc",
"version:show": "node -e \"console.log(require('./package.json').version)\"",
"test": "jest",
"test:file": "jest --watch --onlyChanged --coverage=true --verbose",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch --onlyChanged --verbose",
"test:performance": "jest --config jest.config.performance.js --runInBand --verbose",
"test:coverage": "jest --config jest.config.coverage.js --coverage || true && npm run jest:fix-coverage-paths && npm run jest:badges",
"jest:fix-coverage-paths": "node scripts/fix-coverage-paths.js",
"jest:badges": "node scripts/generate-badge.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.6.2",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.11",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"builtin-modules": "3.3.0",
"esbuild": "0.23.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-override": "https://github.com/PxaMMaxP/eslint-plugin-override",
"istanbul-badges-readme": "^1.9.0",
"jest": "^29.7.0",
"obsidian": "latest",
"obsidian-dataview": "^0.5.67",
"quicktype": "^23.0.81",
"sass": "^1.77.8",
"ts-jest": "^29.2.3",
"tslib": "^2.6.3",
"typedoc": "^0.26.5",
"typescript": "^5.5.3"
},
"dependencies": {
"@nozbe/microfuzz": "^1.0.0",
"axios": "^1.7.2",
"crypto-js": "^4.2.0",
"eslint-plugin-prettier": "^5.2.1",
"jest-environment-jsdom": "^29.7.0",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"ts-injex": "github:PxaMMaxP/TSinjex",
"unist-util-visit": "^5.0.0"
}
}