forked from nsht/tab_notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.38 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.38 KB
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
{
"name": "notekeeper",
"version": "2.1.0",
"description": "NoteKeeper transforms your new tab into a minimalist, auto-saving text editor with a sidebar companion.",
"author": "semanticdata",
"license": "MIT",
"private": true,
"scripts": {
"build": "node scripts/copy-shared.js",
"watch": "node scripts/watch-shared.js",
"dev:newtab": "npm run build && web-ext run --source-dir packages/newtab",
"dev:sidebar": "npm run build && web-ext run --source-dir packages/sidebar",
"lint:newtab": "npm run build && web-ext lint --source-dir packages/newtab",
"lint:sidebar": "npm run build && web-ext lint --source-dir packages/sidebar",
"package:newtab": "npm run build && web-ext build --source-dir packages/newtab",
"package:sidebar": "npm run build && web-ext build --source-dir packages/sidebar",
"package:all": "npm run build && web-ext build --source-dir packages/newtab --overwrite-dest && web-ext build --source-dir packages/sidebar --overwrite-dest"
},
"devDependencies": {
"web-ext": "^9.2.0"
},
"keywords": [
"firefox",
"extension",
"notes",
"productivity",
"newtab",
"sidebar"
],
"repository": {
"type": "git",
"url": "https://github.com/semanticdata/notekeeper"
},
"bugs": {
"url": "https://github.com/semanticdata/notekeeper/issues"
},
"homepage": "https://github.com/semanticdata/notekeeper#readme"
}