-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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
61
62
63
64
65
66
{
"name": "vue-use-async",
"version": "1.9.7",
"description": "Xhr and async helpers",
"repository": {
"type": "git",
"url": "https://github.com/tcastelly/vue-use-async.git"
},
"license": "MIT",
"author": "Thomas CASTELLY",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"afterbuild": "node ./scripts/afterbuild.cjs",
"beforebuild": "node ./scripts/beforeBuild.cjs && npm run tsc:export-types",
"build": "npm run beforebuild && npm run build:webpack && npm run afterbuild",
"build:webpack": "webpack --mode=production",
"lint": "npm run tsc:check-types && eslint src tests",
"lint:fix": "npm run tsc:check-types && eslint --fix src tests",
"lint:quiet": "eslint --quiet \"{tests,src}/**/*.{js,ts,tsx,vue}\" && npm run tsc:check-types",
"precommit": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "NODE_OPTIONS=--unhandled-rejections=warn jest tests/** --no-cache",
"tsc:check-types": "tsc --noemit",
"tsc:export-types": "tsc --outDir types"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.3.0",
"typescript": "^5.7.3",
"vue": "^3.5.13",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"vue": "*"
},
"engines": {
"node": ">=14"
},
"os": [
"darwin",
"linux"
]
}