-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 919 Bytes
/
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
{
"name": "jsx-tags",
"version": "0.0.5",
"description": "A tool for using react without jsx",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"test": "vitest run",
"build": "rimraf build dist && tsc && rollup --config"
},
"keywords": [
"jsx",
"react",
"tags"
],
"author": "anuoua",
"license": "MIT",
"files": [
"dist"
],
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"react": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}