-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
101 lines (101 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@nuxtjs/style-resources",
"version": "2.0.0",
"description": "",
"license": "MIT",
"contributors": [
{
"name": "Alexander Lichter <[email protected]>"
},
{
"name": "Ryota Watanabe",
"url": "https://github.com/wattanx"
}
],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"repository": {
"mode": "git",
"url": "git+https://github.com/nuxt-community/style-resources-module"
},
"bugs": {
"url": "https://github.com/nuxt-community/style-resources-module/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue src test",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint --config commitlint.config.cjs -e $GIT_PARAMS",
"coverage": "codecov",
"prepare": "husky install"
},
"types": "./dist/types.d.ts",
"eslintIgnore": [
".nuxt",
"coverage",
"dist",
"lib/templates/*.*",
"node_modules"
],
"files": [
"dist"
],
"keywords": [
"nuxtjs",
"nuxt",
"nuxt-module",
"sass",
"less",
"stylus",
"style-resources",
"import"
],
"engines": {
"node": ">=v10.24.1",
"npm": ">=6.14.14"
},
"dependencies": {
"@nuxt/kit": "3.7.3",
"sass-resources-loader": "2.2.5"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "0.5.1",
"@nuxt/schema": "3.7.3",
"@nuxt/test-utils": "3.7.3",
"@nuxt/webpack-builder": "3.7.3",
"codecov": "^3.8.3",
"eslint": "^8.49.0",
"get-port": "^5.1.1",
"husky": "^7.0.1",
"jsdom": "^16.7.0",
"less": "^4.1.3",
"less-loader": "^11.1.2",
"mathsass": "^0.11.0",
"nuxt": "3.7.3",
"sass": "^1.62.1",
"sass-loader": "^13.3.1",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.2",
"typescript": "^5.1.3",
"vitest": "0.34.4"
},
"packageManager": "[email protected]"
}