-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.44 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
59
60
61
62
63
64
65
66
{
"name": "wx-lib-dom",
"version": "0.6.0",
"main": "./dist/dom.umd.js",
"module": "./dist/dom.es.js",
"types": "./dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/dom.es.js",
"require": "./dist/dom.umd.js",
"types": "./dist/types/index.d.ts"
},
"./package.json": "./package.json"
},
"license": "MIT",
"scripts": {
"lint": "eslint ./src/",
"lint:types": "tsc --noEmit",
"lint:test": "eslint ./test/ -c ./eslint.tests.js",
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest --run --browser.headless",
"test:watch": "vitest",
"coverage": "vitest --run --coverage --browser.headless",
"prepare": "husky"
},
"files": [
"dist",
"readme.md",
"whatsnew.md"
],
"repository": {
"type": "git",
"url": "https://github.com/svar-widgets/lib-dom"
},
"bugs": {
"url": "https://forum.svar.dev"
},
"homepage": "https://svar.dev/svelte/core/",
"devDependencies": {
"@vitest/browser": "2.1.1",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"globals": "^15.10.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"playwright": "1.47.2",
"prettier": "3.3.3",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0",
"vite": "5.4.8",
"vite-plugin-dts": "4.2.3",
"vitest": "2.1.1"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
}
}