-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·128 lines (128 loc) · 3.36 KB
/
package.json
File metadata and controls
executable file
·128 lines (128 loc) · 3.36 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"title": "contextmenu",
"name": "@htmlos/contextmenu",
"description": "contextmenu for html5",
"typings": "dist/types/contextmenu.d.ts",
"main": "dist/contextmenu.js",
"module": "dist/contextmenu.esm.js",
"browser": "dist/contextmenu.js",
"style": "dist/contextmenu.css",
"version": "0.1.26",
"scripts": {
"prettier": "prettier --write **/*.{js,ts,css}",
"lint-code": "eslint --fix **/*.{js,ts}",
"lint-style": "stylelint --fix **/*.css",
"ncu": "npm install -g npm-check-updates && ncu -u",
"serve": "rollup -c -w",
"build": "tsc && cross-env NODE_ENV=production rollup -c",
"deploy": "yarn build && npm publish --access=public",
"undeploy": "npm unpublish @htmlos/contextmenu --force"
},
"keywords": [
"contextmenu",
"menu",
"os",
"web",
"html",
"html5",
"web",
"js",
"javascript",
"ts",
"typescript",
"vue",
"react",
"browser"
],
"license": "MIT",
"author": {
"name": "Mr.Fan",
"email": "zlhc@live.com"
},
"files": [
"dist"
],
"homepage": "https://github.com/HtmlOS/contextmenu",
"repository": {
"type": "git",
"url": "git@github.com:HtmlOS/contextmenu.git"
},
"bugs": {
"url": "https://github.com/HtmlOS/contextmenu/issues"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-flow": "^7.24.1",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"cssnano": "^7.0.1",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"livereload": "^0.9.3",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.5.11",
"postcss-simple-vars": "^7.0.1",
"postcss-url": "^10.1.3",
"prettier": "^3.2.5",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-watch": "^4.3.1",
"style-loader": "^4.0.0",
"stylelint": "^16.5.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
},
"engines": {
"node": ">=8.0.0"
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
],
"*.{js,ts}": [
"eslint --fix"
],
"*.{css}": [
"stylelint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
}
}