feat: add parser package
This commit is contained in:
29
packages/parser/package.json
Normal file
29
packages/parser/package.json
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"name": "@codeboard/parser",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"private": true,
|
||||||
|
"main": "./dist/index.js",
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"types": "./dist/index.d.ts",
|
||||||
|
"default": "./dist/index.js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "tsc",
|
||||||
|
"clean": "rm -rf dist",
|
||||||
|
"dev": "tsc --watch"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@babel/parser": "^7.26.0",
|
||||||
|
"@babel/traverse": "^7.26.0",
|
||||||
|
"@babel/types": "^7.26.0",
|
||||||
|
"@codeboard/shared": "*",
|
||||||
|
"glob": "^11.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/babel__traverse": "^7.20.0",
|
||||||
|
"typescript": "^5.7"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user