-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "toy-axios",
"version": "0.0.4",
"files": [
"dist",
"index.d.ts",
"README.md"
],
"main": "./dist/toy-axios.umd.js",
"module": "./dist/toy-axios.mjs",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./dist/toy-axios.mjs",
"require": "./dist/toy-axios.umd.js"
},
"scripts": {
"dev": "vite serve example",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"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"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@types/node": "^18.17.0",
"@vitest/coverage-v8": "^0.34.4",
"commitizen": "^4.3.0",
"eslint": "^8.45.0",
"jsdom": "^22.1.0",
"msw": "^1.3.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "~5.1.6",
"vite": "^4.4.6",
"vitepress": "^1.0.0-rc.10",
"vitest": "^0.34.4"
},
"msw": {
"workerDirectory": "example"
}
}