-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·50 lines (50 loc) · 1.27 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": "@nuxtjs/emotion",
"version": "1.0.2",
"description": "The Next Generation of CSS-in-JS for Nuxt.js",
"repository": "nuxt-modules/emotion",
"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": {
"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,.vue,.ts .",
"test": "vitest"
},
"dependencies": {
"@emotion/css": "^11.10.6",
"@emotion/server": "^11.10.0",
"@nuxt/kit": "^3.4.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@nuxt/module-builder": "^0.3.0",
"@nuxt/schema": "^3.4.2",
"@nuxt/test-utils": "^3.4.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nuxt": "^3.4.2",
"prettier": "^2.8.8",
"typescript": "*",
"vitest": "^0.30.1"
},
"publishConfig": {
"access": "public"
}
}