-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.35 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
54
{
"name": "@violentmonkey/dom",
"version": "2.2.0",
"description": "Use JSX for HTML elements.",
"author": "Gerald <[email protected]>",
"license": "ISC",
"repository": "[email protected]:violentmonkey/vm-dom.git",
"scripts": {
"prepare": "husky || true",
"dev": "rollup -wc",
"build:types": "tsc",
"build:js": "rollup -c",
"build": "run-s ci clean build:*",
"format": "prettier --ignore-path .eslintignore --write .",
"lint": "prettier --ignore-path .eslintignore --check . && eslint --ext .ts,tsx src",
"prepublishOnly": "run-s build",
"ci": "run-s lint",
"clean": "del-cli dist types"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./solid-js": "./dist/solid.js"
},
"files": [
"dist",
"types"
],
"typings": "types/index.d.ts",
"devDependencies": {
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"del-cli": "^6.0.0",
"husky": "^9.1.6"
},
"dependencies": {
"@babel/runtime": "^7.25.9",
"@gera2ld/jsx-dom": "^2.2.2",
"solid-js": "^1.9.3"
},
"engines": {
"node": ">=20"
}
}