-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "@dolanske/beskydy",
"type": "module",
"version": "2.0.2",
"private": false,
"description": "Like alps, but smaller. Inspired by alpine.js and petite-vue with my own simplified implementation.",
"author": "dolanske",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/dolanske/beskydy.git"
},
"keywords": [
"javascript",
"typescript",
"vue-petite",
"alpine-js",
"DOM"
],
"exports": {
".": {
"import": "./dist/beskydy.js"
}
},
"main": "./dist/beskydy.js",
"module": "./dist/beskydy.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@vue/reactivity": "^3.4.18",
"jsdom": "^24.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"vite": "^5.1.1",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2"
}
}