-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "wire-ts",
"version": "1.1.12",
"type": "module",
"author": {
"email": "vladimir.minkin@gmail.com",
"name": "Vladimir Minkin"
},
"files": [
"dist"
],
"repository": {
"url": "https://github.com/WiresWare/wire_ts"
},
"main": "./dist/wire.js",
"module": "./dist/wire.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/wire.js",
"require": "./dist/wire.js"
}
},
"license": "MIT",
"scripts": {
"dev": "vite",
"test": "vitest",
"test:ui": "vitest --ui",
"build": "tsc --declaration --emitDeclarationOnly && vite build",
"preview": "vite preview",
"coverage": "vitest run --coverage",
"webstorm-integration": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitest/ui": "^2.1.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"typescript": "5.5.4",
"vite": "^5.4.9",
"vite-plugin-dts": "^4.2.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-remove-console": "^2.2.0",
"vitest": "^2.1.3"
}
}