-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.77 KB
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
{
"name": "nuxt-lightningcss",
"version": "2.3.0",
"description": "Lightningcss for Nuxt",
"repository": "https://github.com/juliendargelos/nuxt-lightningcss",
"keywords": [
"lightningcss",
"nuxt",
"css",
"postcss",
"vue"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"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",
"release": "pnpm lint && pnpm test && pnpm prepack && changelogen --release && pnpm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.17.5",
"@vue/compiler-sfc": "^3.5.16",
"browserslist": "^4.25.0",
"jiti": "^2.4.2",
"lightningcss": "^1.30.1",
"magic-string": "^0.30.17"
},
"devDependencies": {
"@nuxt/devtools": "^0.8.5",
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.17.5",
"@nuxt/test-utils": "^3.19.1",
"@types/node": "^18.19.112",
"changelogen": "^0.5.7",
"eslint": "^8.57.1",
"nuxt": "^3.17.5",
"vitest": "^0.34.6"
},
"peerDependencies": {
"nuxt": "^3.17.5"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}