44 lines
809 B
JSON
44 lines
809 B
JSON
{
|
|
"name": "@openinula/jsx-view-parser",
|
|
"version": "0.0.1",
|
|
"description": "Inula jsx parser",
|
|
"author": {
|
|
"name": "IanDx",
|
|
"email": "iandxssxx@gmail.com"
|
|
},
|
|
"keywords": [
|
|
"inula"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup --sourcemap",
|
|
"test": "vitest --ui"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.12",
|
|
"@types/babel__core": "^7.20.5",
|
|
"@vitest/ui": "^1.2.1",
|
|
"tsup": "^6.7.0",
|
|
"typescript": "^5.3.2",
|
|
"@babel/plugin-syntax-jsx": "7.16.7",
|
|
"vitest": "^1.2.1"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/index.ts"
|
|
],
|
|
"format": [
|
|
"cjs",
|
|
"esm"
|
|
],
|
|
"clean": true,
|
|
"dts": true
|
|
}
|
|
}
|