generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
56 lines (56 loc) · 1.53 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-pocket-plugin",
"version": "0.8.1",
"description": "This is a plugin for Obsidian (https://obsidian.md) that allows for easy access to your Pocket (https://getpocket.com) list.",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w --environment BUILD:dev",
"build": "rollup --config rollup.config.js --environment BUILD:prod",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^14.14.37",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"astroturf": "^1.0.0-beta.21",
"obsidian": "^0.12.11",
"postcss": "^8.3.5",
"postcss-nested": "^5.0.5",
"rollup": "^2.32.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-postcss": "^4.0.0",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"idb": "^6.1.2",
"immutability-helper": "^3.1.1",
"loglevel": "^1.7.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"jest": {
"clearMocks": true,
"moduleNameMapper": {
"src/(.*)": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
]
}
}