-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
16 lines (16 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "nodebook",
"version": "2.0.0",
"description": "Chrome extension that visualizes bookmarks as an interactive D3.js mind map",
"private": true,
"scripts": {
"build": "mkdir -p dist && zip -r dist/nodebook-v$(node -p \"require('./manifest.json').version\").zip . --exclude '*.git*' --exclude 'dist/*' --exclude 'node_modules/*' --exclude '.docs/*' --exclude '*.md' --exclude 'package.json' --exclude '.env*' --exclude '.gitignore'",
"validate": "node -e \"JSON.parse(require('fs').readFileSync('manifest.json','utf8')); console.log('manifest.json is valid JSON')\"",
"start": "echo 'No dev server needed. Load the extension directory in chrome://extensions with Developer Mode enabled.'"
},
"keywords": ["chrome-extension", "bookmarks", "mind-map", "d3", "visualization"],
"license": "MIT",
"engines": {
"node": ">=16"
}
}