-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 884 Bytes
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
{
"name": "new-tab-note",
"version": "1.4.0",
"description": "A rich block-based note editor Chrome extension that replaces your new tab page with AI-powered features",
"private": true,
"scripts": {
"build": "node scripts/build.js",
"build:dev": "node scripts/build.js --dev",
"clean": "rm -rf dist",
"test": "node --test test/*.test.js",
"typecheck": "npx tsc --project jsconfig.json",
"package": "node scripts/package.js",
"release": "npm run clean && npm run build && npm run package"
},
"devDependencies": {
"archiver": "^7.0.1",
"clean-css": "^5.3.3",
"terser": "^5.31.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Keyur Golani <keyurrgolani@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keyurgolani/new-tab-note.git"
}
}