-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 2.03 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
{
"name": "obsidian-sample-plugin",
"version": "2.1.7",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "dist/main.js",
"scripts": {
"dev": "node ./scripts/esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node ./scripts/esbuild.config.mjs production && cp manifest.json versions.json dist/ && postcss -o ./dist/styles.css ./src/styles.css",
"css": "postcss -o ./dist/styles.css --watch ./src/styles.css",
"cp": "bash -c 'cp dist/* $HOME/Notes/.obsidian/plugins/todotxt-plugin/'",
"cp:watch": "nodemon --watch ./dist --ext js,json,css --exec pnpm run cp",
"test": "jest",
"test:watch": "jest --watch --watchPathIgnorePatterns '^scripts/' --watchPathIgnorePatterns '^dist/'",
"version": "node ./scripts/version-bump.mjs",
"release": "pnpm run build && zx ./scripts/release.mjs",
"deploy": "pnpm run release",
"parser": "peggy -o src/lib/parser.js --format commonjs src/lib/todo.peggy",
"parser:watch": "nodemon --watch ./src/lib/todo.peggy --ext peggy --exec pnpm run parser",
"pretty": "prettier --write 'src/**/*.{js,ts,jsx,tsx}'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/luxon": "^3.3.2",
"@types/node": "^18.12.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.13",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"expect": "^29.6.4",
"jest": "^29.6.4",
"nodemon": "^2.0.20",
"obsidian": "latest",
"peggy": "^4.0.2",
"postcss": "^8.4.20",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typescript": "^5.5.0",
"zx": "^7.2.2"
},
"dependencies": {
"luxon": "^3.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"use-long-press": "^3.2.0"
},
"packageManager": "pnpm@9.6.0"
}