generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "obsigen",
"version": "0.0.3",
"description": "Just another customized digital garden.",
"main": "main.js",
"scripts": {
"dev": "concurrently \"npm run dev-ts\" \"npm run dev-sass\"",
"dev-ts": "node esbuild.config.mjs --bundle --watch",
"dev-sass": "sass --watch --no-source-map --style compressed src/styles.scss:src/styles.css",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "jest",
"sasscp": "cp src/styles.css /mnt/c/Users/jesus/Documents/vault/.obsidian/plugins/obsigen/styles.css",
"iconos": "node src/createPrivateIcons.mjs"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.11.6",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.5",
"@types/react-icons": "^3.0.0",
"@types/react-vertical-timeline-component": "^3.3.6",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"concurrently": "^8.2.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-sass-plugin": "^2.15.0",
"jest": "^29.5.0",
"obsidian": "latest",
"sass": "^1.67.0",
"ts-jest": "^29.1.0",
"tsconfig-paths-jest": "^0.0.1",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@eslint/config-array": "^0.17.0",
"@eslint/object-schema": "^2.1.4",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flagkit": "^2.0.4",
"react-icons": "^4.11.0",
"react-vertical-timeline-component": "^3.5.3",
"turndown": "^7.2.0"
}
}