-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "nuxt-ssr-lit",
"version": "1.6.27",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint \"src/**/*.*\" --fix",
"test": "vitest run tests",
"test:watch": "vitest"
},
"dependencies": {
"@lit-labs/ssr": "^3.2.2",
"@nuxt/kit": "^3.14.0",
"@vue/compiler-core": "^3.5.12",
"@vue/compiler-sfc": "^3.5.12",
"@webcomponents/template-shadowroot": "^0.2.1",
"magic-string": "^0.30.12",
"ufo": "^1.5.4"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.0",
"@nuxt/test-utils-edge": "^3.8.0-28284309.b3d3d7f4",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"nuxt": "^3.14.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^0.31.1"
}
}