-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
22 lines (22 loc) · 960 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "rip_quick_add",
"version": "1.3.0",
"description": "Quickly create Google Calendar events from natural language.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c -i src/background.js -o chrome-extension/background.js && rollup -c -i src/popup.js -o chrome-extension/popup.js && rollup -c -i src/options.js -o chrome-extension/options.js",
"watch": "rollup -c --watch -i src/background.js -o chrome-extension/background.js & rollup -c --watch -i src/popup.js -o chrome-extension/popup.js & rollup --watch -c -i src/options.js -o chrome-extension/options.js"
},
"type": "module",
"author": "Max Timkovich",
"license": "MIT",
"devDependencies": {
"chrono-node": "^2.7.5",
"dayjs": "^1.11.10",
"rollup": "^4.12.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-multi-input": "^1.4.1",
"rollup-plugin-node-resolve": "^5.2.0"
}
}