-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.67 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
{
"name": "vuex-orm-decorators",
"version": "2.0.3",
"description": "Simple Typescript decorators to improve the vuex-orm experience in Typescript by introducing typed property access.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "pnpm lint && pnpm test && tsc --rootDir src && rm -rf dist/types/plugins",
"cleanup": "rm -rf {coverage,dist,node_modules}",
"lint": "eslint . --ext .ts",
"lint:report": "pnpm lint --output-file eslint_report.json --format json",
"test": "VITE_CJS_IGNORE_WARNING=true vitest run",
"test:watch": "VITE_CJS_IGNORE_WARNING=true vitest watch",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"vue",
"vuex",
"vuex-orm",
"typescript",
"decorators",
"ES2015"
],
"repository": {
"type": "git",
"url": "[email protected]:TiBianMod/vuex-orm-decorators.git"
},
"author": "TiBianMod <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitest/coverage-v8": "^1.6.0",
"@vuex-orm/core": "^0.36.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^3.2.0",
"prettier": "^3.3.1",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"vuex": "^4.1.0"
}
}