-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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": "@gera2ld/jsx-dom",
"version": "2.2.2",
"description": "Use JSX for HTML elements.",
"author": "Gerald <i@gerald.top>",
"license": "ISC",
"scripts": {
"prepare": "husky install",
"dev": "rollup -wc rollup.conf.js",
"build:types": "tsc -p tsconfig.prod.json",
"build:js": "rollup -c rollup.conf.js",
"build": "run-s lint test clean build:*",
"lint": "eslint --ext .ts,.tsx .",
"prepublishOnly": "run-s build",
"clean": "del-cli dist types",
"test": "cross-env BABEL_ENV=test jest test"
},
"keywords": [
"jsx",
"dom"
],
"repository": "git@github.com:gera2ld/jsx-dom.git",
"typings": "types/index.d.ts",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"files": [
"dist",
"types",
"jsx-runtime.js",
"jsx-runtime.d.ts"
],
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.21.5",
"@gera2ld/plaid": "~2.5.6",
"@gera2ld/plaid-common-ts": "~2.5.1",
"@gera2ld/plaid-rollup": "~2.5.6",
"@gera2ld/plaid-test": "^2.5.8",
"del-cli": "^5.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8"
},
"dependencies": {
"@babel/runtime": "^7.21.5"
}
}