-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "@violentmonkey/ui",
"version": "0.7.9",
"description": "Common UI for userscripts in Violentmonkey",
"author": "Gerald <[email protected]>",
"license": "ISC",
"scripts": {
"prepare": "husky",
"dev": "rollup -wc rollup.config.mjs",
"ci": "run-s lint",
"build": "run-s ci clean build:types build:js",
"format": "prettier --ignore-path .eslintignore --write .",
"lint": "prettier --ignore-path .eslintignore --check . && eslint --ext .ts,tsx src",
"prepublishOnly": "run-s build",
"clean": "del-cli dist types",
"build:js": "rollup -c rollup.config.mjs",
"build:types": "tsc",
"build:docs": "typedoc src/index.ts"
},
"repository": "[email protected]:violentmonkey/vm-ui.git",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"typings": "types/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist",
"types"
],
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"del-cli": "^5.1.0",
"husky": "^9.0.11",
"typedoc": "^0.25.12"
},
"dependencies": {
"@babel/runtime": "^7.24.1",
"@violentmonkey/dom": "^2.1.7"
}
}