-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.48 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@invopop/gobl-builder",
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/invopop/gobl.builder.git"
},
"author": {
"name": "Invopop S.L.",
"email": "dev@invopop.com",
"url": "https://invopop.com"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"build:package": "svelte-kit sync && svelte-package",
"watch:package": "svelte-kit sync && svelte-package -w",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"clean": "rimraf node_modules .svelte-kit build package dist",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types/editor": {
"types": "./dist/types/editor.d.ts",
"default": "./dist/types/editor.d.ts"
},
"./types/envelope": {
"types": "./dist/types/envelope.d.ts",
"default": "./dist/types/envelope.d.ts"
},
"./types/editor/model": {
"types": "./dist/editor/form/utils/model.d.ts",
"default": "./dist/editor/form/utils/model.d.ts"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.22.4",
"@sveltejs/package": "^2.2.0",
"@tailwindcss/forms": "^0.5.4",
"@types/base-64": "^1.0.0",
"@types/country-list": "^2.1.1",
"@types/file-saver": "^2.0.5",
"@types/golang-wasm-exec": "^1.15.0",
"@types/node": "^20.5.7",
"@types/object-hash": "^3.0.3",
"@types/utf8": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"autoprefixer": "^10.4.14",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.32.4",
"flowbite-svelte": "^0.44.22",
"flowbite-svelte-icons": "^0.4.4",
"node-fetch": "^3.3.2",
"object-hash": "^3.0.0",
"postcss": "^8.4.27",
"postcss-nesting": "^13.0.1",
"prettier": "^3.0.1",
"prettier-plugin-svelte": "^3.0.3",
"rimraf": "^5.0.1",
"svelte-check": "^3.4.6",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"vite": ">=4.4.9",
"vscode-uri": "^3.0.7"
},
"dependencies": {
"@invopop/gobl-worker": "^0.205.0",
"@invopop/ui-icons": "^0.0.38",
"@monaco-editor/loader": "^1.4.0",
"@steeze-ui/svelte-icon": "^1.5.0",
"@tailwindcss/container-queries": "^0.1.1",
"@zerodevx/svelte-toast": "^0.9.5",
"base-64": "^1.0.0",
"clsx": "^2.0.0",
"country-list": "^2.3.0",
"date-picker-svelte": "^2.11.0",
"file-saver": "^2.0.5",
"flag-icons": "^6.11.1",
"flowbite": "^1.8.1",
"inter-ui": "^3.19.3",
"monaco-editor": "0.52.0",
"svelte": "^4.1.2",
"svelte-floating-ui": "^1.5.3",
"svelte-hero-icons": "^5.0.0",
"svelte-intersection-observer-action": "^0.0.4",
"svelte-select": "^5.7.0",
"svelte-toasts": "^1.1.2",
"utf8": "^3.0.0",
"vscode-json-languageservice": "5.3.5"
},
"overrides": {
"monaco-editor": {
"vscode-json-languageservice": "$vscode-json-languageservice"
}
}
}