-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.71 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.71 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@nosto/web-components",
"private": false,
"author": {
"name": "Nosto Solutions Oy"
},
"version": "11.4.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.cjs.js",
"module": "./dist/main.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.es.js",
"browser": "./dist/main.es.bundle.js",
"require": "./dist/main.cjs.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nosto/web-components.git"
},
"scripts": {
"build": "tsc --project tsconfig.types.json && node esbuild.mjs && npm run typedoc",
"preview": "vite preview",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "vitest run --silent --coverage",
"test-storybook": "vitest run --silent --config .storybook/vitest.config.ts",
"typecheck": "tsc --noEmit",
"typedoc": "typedoc src/main.ts",
"typedoc-json": "mkdir -p dist && typedoc --json dist/typedoc.json src/main.ts",
"prepare": "husky",
"visualize": "esbuild-visualizer --metadata ./meta.json",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"graphql-codegen": "graphql-codegen"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@nosto/nosto-js": "^2.11.3",
"@shopify/api-codegen-preset": "^2.0.0",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-vitest": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@storybook/web-components-vite": "^10.3.5",
"@types/eslint-config-prettier": "^6.11.3",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/serve-favicon": "^2.5.7",
"@unpic/core": "^1.0.3",
"@vitest/browser": "^4.1.4",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "^0.28.0",
"esbuild-visualizer": "^0.7.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-barrel-files": "^3.0.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-storybook": "^10.3.5",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lit": "^3.3.2",
"msw": "^2.13.3",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"serve-favicon": "^2.5.1",
"storybook": "^10.1.10",
"typedoc": "^0.28.19",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"unpic": "^4.2.2",
"vite": "^8.0.8",
"vitest": "^4.0.15"
},
"engines": {
"node": ">= 22.12.0",
"npm": ">= 10.9.0"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"minimatch": "^10.2.1",
"lodash": "^4.18.0"
}
}