-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 981 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 981 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
{
"name": "iso8601-local-converter",
"version": "1.0.0",
"description": "A Google Chrome extension to create a context menu item for display local date/time from ISO8601 string",
"scripts": {
"build": "NODE_ENV=production rollup --config ./rollup.config.ts --configPlugin @rollup/plugin-typescript",
"watch": "rollup --config ./rollup.config.ts --configPlugin @rollup/plugin-typescript --watch"
},
"private": true,
"keywords": [],
"author": "CocoaCaa (https://twitter.com/cocoa_caa)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/chrome": "^0.0.195",
"rollup": "^2.78.1",
"rollup-plugin-chrome-extension": "^3.6.10",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@popperjs/core": "^2.11.6"
}
}