-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.18 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
66
67
68
69
70
71
{
"name": "@laioutr-app/commercetools",
"version": "1.0.0",
"description": "Commercetools integration for laioutr.",
"repository": "https://github.com/laioutr/app-commercetools",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"orchestr-dev": "infisical run -c \"npm run dev:prepare && nuxi dev orchestr-playground\"",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare orchestr-playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@commercetools/platform-sdk": "^8.17.0",
"@commercetools/ts-client": "^4.2.1",
"@laioutr-app/ui": "^1.17.4",
"@laioutr-core/canonical-types": "^0.13.0",
"@laioutr-core/frontend-core": "^0.19.3",
"@laioutr-core/kit": "^0.7.7",
"@laioutr-core/ui": "^0.19.3",
"@laioutr-core/ui-kit": "^0.19.3",
"@nuxt/kit": "3.16.2",
"@pinia/colada": "0.17.1",
"@pinia/colada-nuxt": "0.2.1",
"@screeny05/ts-money": "1.1.0",
"@vueuse/core": "13.1.0",
"pinia": "3.0.2",
"zod": "3.25.61"
},
"devDependencies": {
"@laioutr-core/orchestr-devtools": "^1.4.15",
"@laioutr/logger": "^0.4.0",
"@nuxt/devtools": "^2.6.3",
"@nuxt/devtools-ui-kit": "2.5.0",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "1.0.1",
"@nuxt/schema": "3.16.2",
"@nuxt/test-utils": "3.19.1",
"@types/node": "latest",
"changelogen": "^0.6.2",
"eslint": "^9.35.0",
"nuxt": "3.16.2",
"typescript": "5.9.2",
"vitest": "3.1.1",
"vue-tsc": "2.2.10"
}
}