-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 909 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
23
24
25
26
27
28
29
30
31
{
"name": "@extend-chrome/clipboard",
"version": "2.0.0",
"description": "Use the clipboard with ease in Chrome extensions.",
"repository": "github:extend-chrome/clipboard",
"license": "MIT",
"author": "Jack and Amy Steam <jacksteamdev@gmail.com>",
"files": [
"lib"
],
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:lib": "rollup -c",
"build:types": "tsc --project tsconfig.types.json",
"start": "rollup -c -w",
"release": "pnpm run build && pnpx np && git push && pnpm cleanup",
"cleanup": "rm -rf node_modules package-lock.json && pnpm i"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"eslint": "^5.16.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.46.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}