-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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": "obsidian-projects",
"version": "1.17.4",
"description": "Plain text project planning for Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest --config jest.config.js",
"svelte-check": "svelte-check",
"lint": "eslint ./src",
"format": "prettier -w ./src",
"sass-build": "sass ./css/styles.scss ./styles.css",
"sass-watch": "sass --watch ./css/styles.scss ./styles.css"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@interactjs/interact": "^1.10.27",
"@interactjs/types": "^1.10.27",
"@popperjs/core": "^2.11.8",
"@popperjs/svelte": "^0.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.1",
"@types/sortablejs": "^1.15.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"builtin-modules": "^3.3.0",
"dayjs": "^1.11.11",
"esbuild": "^0.16.17",
"esbuild-jest": "^0.5.0",
"esbuild-plugin-replace": "^1.4.0",
"esbuild-svelte": "^0.7.4",
"eslint": "^9.15.0",
"eslint-plugin-tsdoc": "^0.4.0",
"fp-ts": "^2.16.6",
"globals": "^15.12.0",
"i18next": "^24.0.2",
"immer": "^10.1.1",
"jest": "^29.7.0",
"obsidian": "^1.7.2",
"obsidian-dataview": "^0.5.67",
"obsidian-svelte": "0.2.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.3.0",
"sass": "^1.77.2",
"svelte": "^3.59.2",
"svelte-check": "^3.7.1",
"svelte-dnd-action": "0.9.52",
"svelte-i18next": "^2.2.2",
"svelte-media-queries": "^1.6.2",
"svelte-preprocess": "^5.1.4",
"ts-essentials": "^10.0.3",
"ts-jest": "^29.1.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"uuid": "^11.0.3",
"yaml": "^2.4.2"
}
}