-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 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
{
"name": "@evanschleret/formforgeclient",
"version": "1.1.0",
"description": "Nuxt module and runtime client for FormForge",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/EvanSchleret/formforgeclient.git"
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.mjs",
"require": "./dist/runtime.cjs"
}
},
"sideEffects": false,
"scripts": {
"build": "nuxt-module-build build",
"dev": "nuxt-module-build build --stub",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@nuxt/ui": "^4.6.0",
"nuxt": "^4.0.0"
},
"dependencies": {
"@internationalized/date": "^3.10.0",
"vuedraggable": "^4.1.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nuxt/kit": "^4.0.0",
"@nuxt/module-builder": "^1.0.2",
"@types/node": "^25.5.2",
"eslint": "^10.2.0",
"eslint-plugin-vue": "^10.8.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.3",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}