12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "vue-client-only",
- "version": "2.1.0",
- "description": "Vue component to wrap non SSR friendly components",
- "repository": {
- "url": "egoist/vue-client-only",
- "type": "git"
- },
- "main": "dist/vue-client-only.common.js",
- "unpkg": "dist/vue-client-only.min.js",
- "types": "types/index.d.ts",
- "files": [
- "dist",
- "types/index.d.ts"
- ],
- "scripts": {
- "types": "dtslint --localTs node_modules/typescript/lib types",
- "test": "echo 'no tests!' && npm run lint",
- "lint": "xo",
- "build": "npm run build:cjs && npm run build:umd",
- "build:cjs": "FORMAT=cjs bili",
- "build:umd": "FORMAT=umd bili",
- "prepublish": "npm run build",
- "example": "poi"
- },
- "poi": {
- "entry": "example/index.js",
- "dist": "example/dist"
- },
- "author": "egoist <0x142857@gmail.com>",
- "license": "MIT",
- "dependencies": {},
- "devDependencies": {
- "bili": "^0.16.0-rc.1",
- "dtslint": "^4.1.0",
- "eslint-config-rem": "^3.0.0",
- "poi": "^9.3.1",
- "tsd": "^0.16.0",
- "typescript": "^4.3.2",
- "vue": "^2.6.13",
- "xo": "^0.18.0"
- },
- "xo": {
- "extends": "rem/prettier",
- "ignores": [
- "example/**"
- ]
- }
- }
|