-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 857 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
{
"name": "tiny-context-menu-js",
"version": "1.1.0",
"main": "dist/context-menu.js",
"module": "dist/context-menu.js",
"types": "dist/context-menu.d.ts",
"sideEffects": false,
"type": "module",
"license": "MIT",
"description": "A simple context menu library",
"scripts": {
"tsc": "tsc",
"build": "tsup src/context-menu.ts --dts --minify --format esm --target es2020 --out-dir dist --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaseottofy/tiny-context-menu-js.git"
},
"author": "Chase Ottofy",
"homepage": "https://github.com/chaseottofy/tiny-context-menu-js#readme",
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-unicorn": "^48.0.0",
"tsup": "^7.1.0",
"typescript": "^5.0.2"
}
}