-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.46 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
{
"name": "vue-lux",
"type": "module",
"version": "1.2.2",
"private": false,
"packageManager": "pnpm@9.10.0",
"description": "Easy DateTime formatting & parsing in Vue using Luxon",
"author": "Donald Shtjefni <dnld.sht@gmail.com>",
"license": "MIT",
"repository": "git@github.com:dnldsht/vue-lux.git",
"keywords": [
"vue",
"vuejs",
"luxon",
"date",
"datetime",
"time",
"format",
"parse"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"import": "./dist/nuxt.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "unbuild",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm lint && pnpm test run && pnpm build && npx changelogen@latest --release --push"
},
"dependencies": {
"defu": "^6.1.2",
"luxon": "^3.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.0",
"@nuxt/kit": "^3.13.1",
"@nuxt/schema": "^3.13.2",
"@types/luxon": "^3.3.0",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.0",
"eslint": "^9.10.0",
"jsdom": "^25.0.0",
"nuxt": "^3.13.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.3",
"unbuild": "^1.2.1",
"vitest": "^2.1.0",
"vue": "^3.3.4"
}
}