-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.47 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
{
"name": "marko-zag-components",
"version": "1.1.0",
"description": "Marko library project with TypeScript",
"license": "MIT",
"type": "module",
"files": [
"dist",
"marko.json",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:lint": "npm run lint",
"@ci:test": "vitest run --coverage",
"build": "mtc -p tsconfig.build.json",
"clean": "rm -rf coverage dist node_modules/.{cache,vite,vitest}",
"format": "eslint --format unix --fix .; stylelint --formatter unix --fix '**/*.css'; prettier . --write --log-level=warn",
"lint": "mtc && eslint --format unix . && stylelint --formatter unix '**/*.css' && prettier . --check --log-level=warn",
"prepare": "husky",
"release": "npm run build && tsx publish.mts pre && npm publish && tsx publish.mts post",
"storybook": "storybook dev",
"test": "vitest"
},
"devDependencies": {
"@marko/compiler": "^5.34.6",
"@marko/tags-api-preview": "0.7.3",
"tsx": "^4.7.1",
"@marko/testing-library": "^6.1.5",
"@marko/type-check": "^1.1.3",
"@marko/vite": "^4.1.1",
"@storybook/addon-essentials": "^7.6.12",
"@storybook/addon-interactions": "^7.6.12",
"@storybook/marko": "^8.0.2",
"@storybook/marko-vite": "^1.0.4",
"@testing-library/jest-dom": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"prettier-plugin-marko": "^3.1.2",
"prettier-plugin-packagejson": "^2.4.10",
"react": "^18.2.0",
"storybook": "^7.6.12",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"@storybook/addon-docs": "^7.6.12"
},
"main": "marko.json",
"peerDependencies": {
"marko": ">= 5.22.0"
},
"dependencies": {
"@marko-tags/portal": "^1.2.2",
"@zag-js/accordion": "^0.36.2",
"@zag-js/avatar": "^0.36.2",
"@zag-js/checkbox": "^0.34.0",
"@zag-js/combobox": "^0.36.2",
"@zag-js/dialog": "^0.36.2",
"@zag-js/menu": "^0.36.2",
"@zag-js/switch": "^0.36.2",
"@zag-js/tree-view": "^0.38.1",
"marko-zag": "0.0.2"
}
}