ez-common-ts/package.json

34 lines
783 B
JSON
Raw Normal View History

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",
2024-01-29 00:26:54 +08:00
"build-and-commit": "tsc && vite build && git commit -am \"build\"",
"push-and-tag": "git push && git tag v0.0.2 && git push --tags",
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",
2024-01-28 18:30:46 +08:00
"vite": "^5.1.0-beta.5",
2023-11-11 15:30:11 +08:00
"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
}