-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 996 Bytes
/
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
{
"name": "@stibstack/tiel",
"version": "0.1.5",
"files": [
"dist"
],
"author": {
"name": "Stian Bakken",
"email": "[email protected]",
"url": "https://github.com/utrolig"
},
"description": "",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"example": "vite",
"prepublish": "run-s typecheck test:once lint build",
"lint": "eslint --ext .ts src",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch",
"test": "vitest",
"test:once": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.1",
"eslint": "^8.56.0",
"happy-dom": "^13.3.1",
"npm-run-all": "^4.1.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
}
}