forked from NavidK0/clippy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.69 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@navidk0/clippy",
"version": "1.0.1",
"description": "clippy.js but with TypeScript",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/index.js",
"web": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build-js",
"build-js": "rollup -c rollup.config.js",
"clean": "rimraf dist",
"watch": "rollup -c -w",
"prepublish": "npm run build",
"lint": "yarn eslint . --cache --cache-location node_modules/.cache/eslint",
"lint:fix": "yarn lint --fix"
},
"repository": {
"url": "https://github.com/NavidK0/clippy"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-buble": "1.0.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-image": "3.0.3",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/jquery": "3.5.29",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-file-progress": "1.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "12.0.0",
"jquery": "4.0.0-beta",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"rollup": "4.12.0",
"rollup-plugin-ignore": "1.0.10",
"rollup-plugin-styles": "4.0.0",
"tsx": "4.7.1",
"typescript": "5.3.3"
}
}