This repository was archived by the owner on Feb 15, 2026. It is now read-only.
forked from violentmonkey/vm-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "@wq2/ui",
"version": "0.10.5",
"description": "Common UI for userscripts in Violentmonkey",
"author": "6x68",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "rollup -wc rollup.config.mjs",
"ci": "bun run lint",
"build": "bun run ci && bun run clean && bun run build:types && bun run build:js",
"format": "biome format --write",
"lint": "biome check",
"lint:fix": "biome check --fix",
"clean": "del-cli dist types",
"build:js": "rollup -c rollup.config.mjs",
"build:types": "tsc",
"build:docs": "typedoc src/index.ts",
"bump": "script/bump.ts"
},
"repository": {
"url": "git://github.com/6x68/vm-ui.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"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.28",
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"del-cli": "^7.0",
"typedoc": "^0.28"
},
"dependencies": {
"@babel/runtime": "^7.28",
"@biomejs/biome": "^2.3.13",
"@violentmonkey/dom": "^2.2.1"
}
}