-
-
Notifications
You must be signed in to change notification settings - Fork 650
/
package.json
41 lines (41 loc) · 1.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
{
"name": "@notesnook/clipper",
"version": "2.1.3",
"description": "Web clipper core used by the Notesnook Web Clipper",
"keywords": [
"web-clipper"
],
"author": "Abdullah Atta <[email protected]>",
"homepage": "https://notesnook.com/",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"devDependencies": {
"@playwright/test": "^1.27.1",
"slugify": "^1.6.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetwriters/notesnook.git"
},
"scripts": {
"build": "tsc && yarn webpack -c webpack.config.js",
"prepublishOnly": "npm run build",
"test": "playwright test",
"postinstall": "patch-package",
"watch": "tsc --watch"
},
"bugs": {
"url": "https://github.com/streetwriters/notesnook/issues"
},
"dependencies": {
"@mozilla/readability": "^0.4.2",
"css-what": "6.1.0",
"hyperapp": "^2.0.22",
"specificity": "^0.4.1"
}
}