-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 KB
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
67
68
69
70
71
72
{
"name": "@lakyjs/oxios",
"type": "module",
"version": "0.0.4",
"license": "MIT",
"exports": {
"types": "./index.d.ts",
"import": "./dist/oxios.js",
"require": "./dist/oxios.umd.cjs"
},
"main": "./dist/oxios.umd.cjs",
"module": "./dist/oxios.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"scripts": {
"dev": "vite serve example",
"lint": "eslint",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && vite build",
"test": "vitest --coverage --run",
"test:watch": "vitest --coverage",
"test:prod": "npm run lint && vitest --coverage --run",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"commit": "git-cz",
"prepub": "npm run test:prod && npm run build",
"pub": "sh release.sh",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"onion-interceptor": "^1.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@rushstack/eslint-patch": "^1.3.2",
"@storybook/addon-essentials": "8.6.12",
"@storybook/addon-interactions": "8.6.12",
"@storybook/blocks": "8.6.12",
"@storybook/html": "8.6.12",
"@storybook/html-vite": "8.6.12",
"@storybook/test": "8.6.12",
"@types/node": "^18.17.0",
"@vitest/coverage-v8": "^1.6.0",
"commitizen": "^4.3.0",
"eslint": "^9.8.0",
"eslint-plugin-storybook": "^0.12.0",
"jsdom": "^22.1.0",
"msw": "^2.7.3",
"rimraf": "^5.0.1",
"storybook": "8.6.12",
"typescript": "^5.4.5",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.5.3",
"vitepress": "^1.3.1",
"vitest": "^1.6.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}