| 12345678910111213141516171819202122232425 |
- {
- "name": "@growi/pluginkit",
- "version": "0.1.0",
- "license": "MIT",
- "main": "dist/index.cjs",
- "module": "dist/index.js",
- "types": "dist/index.d.ts",
- "type": "module",
- "scripts": {
- "build": "vite build",
- "clean": "shx rm -rf dist",
- "dev": "vite build --mode dev",
- "watch": "yarn dev -w --emptyOutDir=false",
- "lint:js": "yarn eslint **/*.{js,ts}",
- "lint:typecheck": "tsc",
- "lint": "npm-run-all -p lint:*",
- "test": "vitest run --coverage"
- },
- "dependencies": {
- "@growi/core": "link:../core",
- "extensible-custom-error": "^0.0.7"
- },
- "devDependencies": {
- }
- }
|