-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
{
"name": "nuxt-excalidraw",
"type": "module",
"version": "1.0.0-beta.7",
"description": "Nuxt Excalidraw allow you to use the amazing React library Excalidraw inside your Nuxt 3 application.",
"author": "Angelo Schuler Piletti <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AngeloSchulerPiletti/nuxt-excalidraw"
},
"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"
],
"engines": {
"node": "^19.8.1",
"pnpm": "^8.10.5"
},
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm run lint && pnpm prepack && release-it major --preRelease=beta",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"stackblitz": "npm run dev"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.17.0",
"@nuxt/kit": "^3.8.1",
"@vitejs/plugin-react": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.2",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.3",
"@nuxt/schema": "^3.8.1",
"@nuxt/test-utils": "^3.8.1",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.8.10",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"changelogen": "^0.5.5",
"eslint": "^8.53.0",
"lint-staged": "^15.1.0",
"nuxt": "^3.8.1",
"release-it": "^17.0.0",
"simple-git-hooks": "^2.9.0",
"vitest": "^0.33.0",
"vue": "^3.3.8"
},
"stackblitz": {
"startCommand": "npm run stackblitz"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}