-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.55 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@geprog/use-feathers",
"version": "0.0.0-semantic-release",
"description": "Vue.js compositions for Feathers",
"homepage": "https://geprog.com",
"repository": "github:geprog/use-feathers",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"clean": "rm -rf dist/ node_modules/",
"lint": "eslint --max-warnings 0 .",
"lint:format": "prettier --check .",
"start": "pnpm run build --watch",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"dependencies": {
"sift": "^15.0.0"
},
"devDependencies": {
"@feathersjs/adapter-commons": "5.0.0-pre.15",
"@feathersjs/errors": "5.0.0-pre.15",
"@feathersjs/feathers": "5.0.0-pre.15",
"@geprog/eslint-config": "1.1.0",
"@geprog/semantic-release-config": "1.0.0",
"@vue/test-utils": "2.0.0",
"c8": "7.11.3",
"eslint": "8.8.0",
"jsdom": "20.0.0",
"prettier": "2.5.1",
"semantic-release": "19.0.3",
"tsup": "5.11.13",
"typescript": "4.5.5",
"vite": "3.0.3",
"vitest": "0.19.1",
"vue": "3.2.37"
},
"peerDependencies": {
"@feathersjs/adapter-commons": "^5.0.0-pre.3",
"@feathersjs/feathers": "^5.0.0-pre.3",
"vue": "^3.0.11"
},
"engines": {
"pnpm": "7"
}
}