2023-11-10 15:34:16 +08:00
|
|
|
{
|
|
|
|
|
"name": "ez-common-ts",
|
|
|
|
|
"private": true,
|
2023-11-11 15:30:11 +08:00
|
|
|
"version": "0.0.1",
|
|
|
|
|
"author": "zjj",
|
2023-11-10 15:34:16 +08:00
|
|
|
"type": "module",
|
2023-11-11 15:30:11 +08:00
|
|
|
"main": "./lib/index.umd.js",
|
|
|
|
|
"module": "./lib/index.es.js",
|
|
|
|
|
"types": "./lib/index.d.ts",
|
2023-11-10 15:34:16 +08:00
|
|
|
"scripts": {
|
2023-11-11 15:55:36 +08:00
|
|
|
"build": "tsc && vite build",
|
2023-11-12 21:58:32 +08:00
|
|
|
"push": "tsc && vite build && git commit -am \"build\" && git push",
|
2023-11-11 15:30:11 +08:00
|
|
|
"test": "vitest"
|
2023-11-10 15:34:16 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-11-11 21:28:01 +08:00
|
|
|
"prettier": "^3.0.3",
|
2023-11-10 15:34:16 +08:00
|
|
|
"typescript": "^5.0.2",
|
2023-11-11 15:30:11 +08:00
|
|
|
"vite": "^4.4.5",
|
|
|
|
|
"vite-plugin-dts": "^3.6.3",
|
|
|
|
|
"vue": "^3.2.47"
|
2023-11-10 16:35:59 +08:00
|
|
|
},
|
2023-11-11 15:30:11 +08:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"import": "./lib/index.es.js",
|
2023-11-11 21:28:01 +08:00
|
|
|
"require": "./lib/index.umd.js",
|
|
|
|
|
"types": "./lib/index.d.ts"
|
2023-11-11 15:30:11 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"vitest": "^0.34.6"
|
|
|
|
|
}
|
2023-11-12 21:58:32 +08:00
|
|
|
}
|