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
|
{
"name": "ui",
"version": "0.0.0",
"private": true,
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.tsx --format cjs --dts --external react",
"clean": "rm -rf dist",
"dev": "tsup src/index.tsx --format cjs --watch --dts --external react",
"lint": "eslint \"src/**/*.ts*\""
},
"devDependencies": {
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"eslint": "^8.4.1",
"eslint-config-custom": "workspace:*",
"react": "^17.0.2",
"tsconfig": "workspace:*",
"tsup": "^5.10.1",
"typescript": "^4.5.3"
}
}
|