-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "stackAwait",
"version": "0.0.0",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^20.4.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/coverage-istanbul": "^0.34.2",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^3.0.0",
"rollup-plugin-typescript-paths": "^1.4.0",
"tslib": "^2.6.0",
"typescript": "^4.5.4",
"vite": "^4.4.6",
"vite-plugin-dts": "^3.3.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js"
}
}
}