-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "boilerplate",
"version": "0.0.0",
"type": "module",
"main": "./dist/moduleName.umd.cjs",
"module": "./dist/moduleName.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/moduleName.js",
"require": "./dist/moduleName.umd.cjs"
}
},
"description": "",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && vite build",
"lint": "xo",
"lint:fix": "xo --fix",
"test": "npm run clean && vitest",
"test:coverage": "vitest run --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"docgen": "typedoc src/index.ts"
},
"private": true,
"license": "Unlicense",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^20.1.3",
"@vitest/browser": "^0.31.0",
"@vitest/coverage-c8": "^0.31.0",
"rimraf": "^5.0.0",
"typedoc": "^0.24.8",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.0",
"webdriverio": "^8.10.2",
"xo": "^0.54.2"
}
}